s4sarath / word2vec_supervised

A supervised approach for word2vec
4 stars 1 forks source link

Windows #1

Open VuceWillis opened 8 years ago

VuceWillis commented 8 years ago

I was simply wondering if it's possible to implement this in windows and if it is, how? Thank you for your help!

s4sarath commented 8 years ago

Hi ,

I ve never tried it on windows. But the procedures are same as I mentioned in github. All you need is python and cython. If any trouble pls let me know.

Regards Sarath On 23 May 2016 00:51, "VuceWillis" notifications@github.com wrote:

I was simply wondering if it's possible to implement this in windows and if it is, how? Thank you for your help!

— You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub https://github.com/s4sarath/word2vec_supervised/issues/1

VuceWillis commented 8 years ago

Thank you for your help. So far I haven't been able to get it working however. So what I'va done so far: 1) Included 'from .word2vec_supervised import Word2Vec_Supervised' in the init.py file

2) In the ~/gensim/models folder, I copy pasted the 'word2vec_supervised.pyx' file. Then I ran the setup file. This created two additional files: 'word2vec_supervised.pyc' and 'word2vec_inner_supervised.c' (so no .so file). If I compare this with for example the regular word2vec, the only file that is missing now is a file with extension .pyd (word2vec_inner_supervised.pyd). Perhaps this is the replacement for do .so file??

3) I tried to run the test_supervised.py and sample_supervise.py files anyway and got the following results. The test file returns 'Failed to load train_sentence_sg_mod from gensim.models.word2vec_inner_supervised' (in other words, it didn't work). But when I run the sample file, it returns an unexpected error: TypeError Traceback (most recent call last) C:\Users\Vuk\Downloads\word2vec_supervised-master\word2vec_supervised-master\sample_supervise.py in () 35 sentences_tokens.append(sent.split()) 36 ---> 37 model = gensim.models.Word2Vec_Supervised(sentences_tokens, size=100, window=15, hs=0, negative=5, iter=5, min_count=2, workers=1, label_dict = label_dict ) 38 39 cPickle.dump( model, open('save_model.pkl', 'wb'), protocol=2)

C:\Users\Vuk\Anaconda2\lib\site-packages\gensim\models\word2vec_supervised.pyc in init(self, sentences, size, alpha, window, min_count, sample, seed, workers, min_alpha, sg, hs, negative, cbow_mean, hashfxn, iter, label_dict) 320 if isinstance(sentences, GeneratorType): 321 raise TypeError("You can't pass a generator as the sentences argument. Try an iterator.") --> 322 self.build_vocab(sentences, label_dict) 323 sentences = utils.RepeatCorpusNTimes(sentences, iter) 324 self.train(sentences)

C:\Users\Vuk\Anaconda2\lib\site-packages\gensim\models\word2vec_supervised.pyc in build_vocab(self, sentences, label_dict) 407 labellist = [] 408 for word, label_ in iteritems(label_dict): --> 409 label_list = labellist+label 410 411 vocab2 = self._vocab_from_dict(label_list)

TypeError: can only concatenate list (not "str") to list

I tried to adjust this line 409 in a couple of ways, but I always get the same error. Any ideas on what is wrong?

Ps. In the sample_supervise.py file, a variable senetences was defined where it should be sentences :)

s4sarath commented 8 years ago

Hi ,

I will have a look by evening and let you know .

Regards Sarath On 23 May 2016 13:52, "VuceWillis" notifications@github.com wrote:

Thank you for your help. So far I haven't been able to get it working however. So what I'va done so far: 1) Included 'from .word2vec_supervised import Word2Vec_Supervised' in the init.py file

2) In the ~/gensim/models folder, I copy pasted the 'word2vec_supervised.pyx' file. Then I ran the setup file. This created two additional files: 'word2vec_supervised.pyc' and 'word2vec_inner_supervised.c' (so no .so file). If I compare this with for example the regular word2vec, the only file that is missing now is a file with extension .pyd (word2vec_inner_supervised.pyd). Perhaps this is the replacement for do .so file??

3) I tried to run the test_supervised.py and sample_supervise.py files anyway and got the following results. The test file returns 'Failed to load train_sentence_sg_mod from gensim.models.word2vec_inner_supervised' (in other words, it didn't work). But when I run the sample file, it returns an unexpected error: TypeError Traceback (most recent call last) C:\Users\Vuk\Downloads\word2vec_supervised-master\word2vec_supervised-master\sample_supervise.py in () 35 sentences_tokens.append(sent.split()) 36 ---> 37 model = gensim.models.Word2Vec_Supervised(sentences_tokens, size=100, window=15, hs=0, negative=5, iter=5, min_count=2, workers=1, label_dict = label_dict ) 38 39 cPickle.dump( model, open('save_model.pkl', 'wb'), protocol=2)

C:\Users\Vuk\Anaconda2\lib\site-packages\gensim\models\word2vec_supervised.pyc in init(self, sentences, size, alpha, window, min_count, sample, seed, workers, min_alpha, sg, hs, negative, cbow_mean, hashfxn, iter, label_dict) 320 if isinstance(sentences, GeneratorType): 321 raise TypeError("You can't pass a generator as the sentences argument. Try an iterator.") --> 322 self.build_vocab(sentences, label_dict) 323 sentences = utils.RepeatCorpusNTimes(sentences, iter) 324 self.train(sentences)

C:\Users\Vuk\Anaconda2\lib\site-packages\gensim\models\word2vec_supervised.pyc in build_vocab(self, sentences, label_dict) 407 labellist = [] 408 for word, label_ in iteritems(label_dict): --> 409 label_list = labellist+label 410 411 vocab2 = self._vocab_from_dict(label_list)

TypeError: can only concatenate list (not "str") to list

I tried to adjust this line 409 in a couple of ways, but I always get the same error. Any ideas on what is wrong?

Ps. In the sample_supervise.py file, a variable senetences was defined where it should be sentences :)

— You are receiving this because you commented. Reply to this email directly or view it on GitHub https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-220916366

VuceWillis commented 8 years ago

Hey Sarath,

Did you, by any chance, have any clues on my issue??

Best, Vuk

s4sarath commented 8 years ago

Hi ,

I checked it on my windows. It is not working. I think itz because of some libraries, which are highly windows specific. I m nt dat sure also .

Regards Sarath On 26 May 2016 13:45, "VuceWillis" notifications@github.com wrote:

Hey Sarath,

Did you, by any chance, have any clues on my issue??

Best, Vuk

— You are receiving this because you commented. Reply to this email directly or view it on GitHub https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-221806449

VuceWillis commented 8 years ago

Too bad. Thanks for the help anyway!

s4sarath commented 8 years ago

I will try to modify the code . But it might take some time . On 26 May 2016 17:50, "VuceWillis" notifications@github.com wrote:

Too bad. Thanks for the help anyway!

— You are receiving this because you commented. Reply to this email directly or view it on GitHub https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-221855610

VuceWillis commented 8 years ago

I can imagine it can take some time. Hope you can make it working for windows :)

s4sarath commented 8 years ago

Hi Vuce ,

I modified everything .

https://github.com/s4sarath/word2vec_supervised

A new package is there . First uninstall any version of gensim you have .

Unzip the gensim_word2vec_supervised.zip . It includes all gensim packages

Do installation by python setup,py install .

A sample script is there .

Test it and tell .

Better run in terminal ( rather than in ipython ) , for debugging purpose . let me know if you have nay issues .

Regards Sarath

On Thu, May 26, 2016 at 7:27 PM, VuceWillis notifications@github.com wrote:

I can imagine it can take some time. Hope you can make it working for windows :)

— You are receiving this because you commented. Reply to this email directly or view it on GitHub https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-221878210

VuceWillis commented 8 years ago

Awesome! I uninstalled gensim and then run the setup.py from the terminal. Unfortunately When running:

C:\Users\Vuk>python C:\Users\Vuk\Downloads\gensim_word2vec_supervised\gensim-0.12.4\setup.py install

I get the following message (where it says the standard file 'setup.py' can't be found, which I don't get, cause that's the file I'm running):

running install running bdist_egg running egg_info creating gensim.egg-info writing requirements to gensim.egg-info\requires.txt writing gensim.egg-info\PKG-INFO writing top-level names to gensim.egg-info\top_level.txt writing dependency_links to gensim.egg-info\dependency_links.txt writing manifest file 'gensim.egg-info\SOURCES.txt' warning: manifest_maker: standard file 'setup.py' not found

reading manifest file 'gensim.egg-info\SOURCES.txt' writing manifest file 'gensim.egg-info\SOURCES.txt' installing library code to build\bdist.win-amd64\egg running install_lib running build_ext building 'gensim.models.word2vec_inner' extension creating build creating build\temp.win-amd64-2.7 creating build\temp.win-amd64-2.7\Release creating build\temp.win-amd64-2.7\Release\gensim creating build\temp.win-amd64-2.7\Release\gensim\models C:\Users\Vuk\Anaconda2\Scripts\gcc.bat -DMS_WIN64 -mdll -O -Wall -IC:\Users\Vuk\Downloads\gensim_word2vec_supervised\gensim-0.12.4\gensim\models -IC:\Users\Vuk\Anaconda2\include -IC:\Users\Vuk\Anaconda2\PC -IC:\Users\Vuk\Anaconda2\lib\site-packages\numpy\core\include -c ./gensim/models/word2vec_inner.c -o build\temp.win-amd64-2.7\Release.\gensim\models\word2vec_inner.o gcc.exe: error: ./gensim/models/word2vec_inner.c: No such file or directory gcc.exe: fatal error: no input files compilation terminated. command 'C:\Users\Vuk\Anaconda2\Scripts\gcc.bat' failed with exit status 1 C:\Users\Vuk\Downloads\gensim_word2vec_supervised\gensim-0.12.4\setup.py:86: UserWarning:


WARNING: %s could not be compiled. No C extensions are essential for gensim to run, although they do result in significant speed improvements for some modules. %s

Any ideas? I just saw that I need BLAS, which I don't have. Could that be the problem??

s4sarath commented 8 years ago

Its showing word2vec_inner.c not found . But its there actually . Its inside the models directory . I m pretty sure . Windows sucks . Let me have a try .

VuceWillis commented 8 years ago

Haha, I'm considering Linux more and more I must admit. If you could get it working on windows that would be awesome, but I can imagine at some point you feel like you tried enough. Anyway, please let me know if something came up!

VuceWillis commented 8 years ago

So I installed Linux! Unfortunately, I still get the same problem: x86_64-linux-gnu-gcc: error: ./gensim/models/word2vec_inner.c: No such file or directory

When I look for the word2vec_inner.c file, the file is there like you said. I assume at some point it worked for you; so do you have any idea where it went wrong?

s4sarath commented 8 years ago

Which version of Linux or Ubuntu you ve installed? On 7 Jun 2016 23:12, "VuceWillis" notifications@github.com wrote:

So I installed Linux! Unfortunately, I still get the same problem: x86_64-linux-gnu-gcc: error: ./gensim/models/word2vec_inner.c: No such file or directory

When I look for the word2vec_inner.c file, the file is there like you said. I assume at some point it worked for you; so do you have any idea where it went wrong?

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224357636, or mute the thread https://github.com/notifications/unsubscribe/AKJPKMEW64WjVDDiBOR9sdv6XWWHfJ4Gks5qJa14gaJpZM4IkDeW .

VuceWillis commented 8 years ago

I have Ubuntu 14.04.4 LTS

s4sarath commented 8 years ago

I am also using the same .

wget http://repo.continuum.io/archive/Anaconda2-4.0.0-Linux-x86_64.sh Install Anaconda package ( bash Anaconda2-4.0.0-Linux-x86_64.sh ) sudo apt-get install libblas-dev liblapack-dev sudo apt-get install gfortran

Try again .

If not working

Make a separate copy of the gensim zip file from my repo

Go to the folder ( models ) , where word2vec_inner_supervised.pyx is present .

Delete word2vec_inner_supervised.c

Create a file called setup_ex.py and Place the following code

from distutils.core import setup from Cython.Build import cythonize import numpy

setup( name = 'word2Vec_Supervised', ext_modules = cythonize("word2vec_inner_supervised.pyx"), include_dirs=[numpy.get_include()] )

Then , on terminal inside the same folder do "python setup_ex.py build_ext --inplace".

It will generate a word2vec_inner_supervised.c

Copy this word2vec_inner_supervised.c and replace it with the one u have from my repo .

Go to the main directory.

Try , python setup.py install

On Wed, Jun 8, 2016 at 12:40 PM, VuceWillis notifications@github.com wrote:

I have Ubuntu 14.04.4 LTS

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224507579, or mute the thread https://github.com/notifications/unsubscribe/AKJPKMproIYWloslYy4wNxlN6qq7KbOQks5qJmrugaJpZM4IkDeW .

VuceWillis commented 8 years ago

So, installing anaconda, libblas-dev, liblapack-dev and gfortran was easy! :) However, when I execute: sudo python Downloads/gensim-0.12.4/setup.py install I get still get the same error: x86_64-linux-gnu-gcc: error: ./gensim/models/word2vec_inner.c: No such file or directory

So then I tried the setup_ex.py file.

I created the setup_ex.py file and put that file in the directory with word2vec_inner_supervised.pyx Now executing: python Downloads/gensim-0.12.4/gensim/models/setup_ex.py build_ext --inplace I get: ValueError: 'word2vec_inner_supervised.pyx' doesn't match any files

Any ideas??

s4sarath commented 8 years ago

Are you sure word2vec_inner_supervised.pyx is there in that directory ?

On Wed, Jun 8, 2016 at 5:53 PM, VuceWillis notifications@github.com wrote:

So, installing anaconda, libblas-dev, liblapack-dev and gfortran was easy! :) However, when I execute: sudo python Downloads/gensim-0.12.4/setup.py install I get still get the same error: x86_64-linux-gnu-gcc: error: ./gensim/models/word2vec_inner.c: No such file or directory

So then I tried the setup_ex.py file.

I created the setup_ex.py file and put that file in the directory with word2vec_inner_supervised.pyx Now executing: python Downloads/gensim-0.12.4/gensim/models/setup_ex.py build_ext --inplace I get: ValueError: 'word2vec_inner_supervised.pyx' doesn't match any files

Any ideas??

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224572805, or mute the thread https://github.com/notifications/unsubscribe/AKJPKIevJiGaq8SAStGawXVq1PR-b7BHks5qJrQwgaJpZM4IkDeW .

VuceWillis commented 8 years ago

Absolutely. Both setup_ex.py and word2vec_inner_supervised.pyx are in the following folder: /home/vuk/Downloads/gensim-0.12.4/gensim/models

Does installing word2vec_supervised still work for you?

s4sarath commented 8 years ago

Surprising fact is word2vec_inner.c is the original gensim C file . Not mine . I will sent you a mail with a tar setup . Run python setup_ex.py build_ext --inplace from that . Lets see . Make sure Cython is installed .

s4sarath commented 8 years ago

Here is the tar file . ​ gensim_mod.tar https://drive.google.com/file/d/0B8WO59MFMJxIUXVZOVF0bERkMEk/view?usp=drive_web

On Wed, Jun 8, 2016 at 7:05 PM, VuceWillis notifications@github.com wrote:

Absolutely. Both setup_ex.py and word2vec_inner_supervised.pyx are in the following folder: /home/vuk/Downloads/gensim-0.12.4/gensim/models

Does installing word2vec_supervised still work for you?

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224590234, or mute the thread https://github.com/notifications/unsubscribe/AKJPKM6V2GGbYFL9_CktgwUkqmNCStiCks5qJsUEgaJpZM4IkDeW .

VuceWillis commented 8 years ago

I have cython installed and executed the setup_ex.py file from the extracted tar-map. I get exactly the same problem as I had before: ValueError: 'word2vec_inner_supervised.pyx' doesn't match any files :(

Any other ideas? Is there maby something wrong with my OS? That would be strange though, since everything else works fine.

2016-06-08 16:15 GMT+02:00 s4sarath notifications@github.com:

Here is the tar file . ​ gensim_mod.tar < https://drive.google.com/file/d/0B8WO59MFMJxIUXVZOVF0bERkMEk/view?usp=drive_web

On Wed, Jun 8, 2016 at 7:05 PM, VuceWillis notifications@github.com wrote:

Absolutely. Both setup_ex.py and word2vec_inner_supervised.pyx are in the following folder: /home/vuk/Downloads/gensim-0.12.4/gensim/models

Does installing word2vec_supervised still work for you?

— You are receiving this because you commented. Reply to this email directly, view it on GitHub < https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224590234 , or mute the thread < https://github.com/notifications/unsubscribe/AKJPKM6V2GGbYFL9_CktgwUkqmNCStiCks5qJsUEgaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224602534, or mute the thread https://github.com/notifications/unsubscribe/ASQjUHY9zveJOilsVouUWyh8uIJuunzPks5qJs5sgaJpZM4IkDeW .

s4sarath commented 8 years ago

Hi Vuce ,

Uninstall Cython 0.23 . That might be the version of Cython you have and install Cython 0.21 and try again , Please do let me know .

On Wed, Jun 8, 2016 at 8:07 PM, VuceWillis notifications@github.com wrote:

I have cython installed and executed the setup_ex.py file from the extracted tar-map. I get exactly the same problem as I had before: ValueError: 'word2vec_inner_supervised.pyx' doesn't match any files :(

Any other ideas? Is there maby something wrong with my OS? That would be strange though, since everything else works fine.

2016-06-08 16:15 GMT+02:00 s4sarath notifications@github.com:

Here is the tar file . ​ gensim_mod.tar <

https://drive.google.com/file/d/0B8WO59MFMJxIUXVZOVF0bERkMEk/view?usp=drive_web

On Wed, Jun 8, 2016 at 7:05 PM, VuceWillis notifications@github.com wrote:

Absolutely. Both setup_ex.py and word2vec_inner_supervised.pyx are in the following folder: /home/vuk/Downloads/gensim-0.12.4/gensim/models

Does installing word2vec_supervised still work for you?

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224590234

, or mute the thread <

https://github.com/notifications/unsubscribe/AKJPKM6V2GGbYFL9_CktgwUkqmNCStiCks5qJsUEgaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub < https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224602534 , or mute the thread < https://github.com/notifications/unsubscribe/ASQjUHY9zveJOilsVouUWyh8uIJuunzPks5qJs5sgaJpZM4IkDeW

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224609898, or mute the thread https://github.com/notifications/unsubscribe/AKJPKLatI19o2v_FhxjRmTwHRb3SjefSks5qJtO8gaJpZM4IkDeW .

VuceWillis commented 8 years ago

Hi Sarath,

There seems to be some improvement! The thing I changed, is setting the 'cd' to Downloads/gensim-0.12.4/ and then run pyhton setup.py install (instead of running sudo python Dowloads/gensim-0.12.4/setup.py install. Perhaps this is some kind of rookie mistake, I'm sorry about that). This didn't give me the error like before of not being able to find the word2vec_inner_supervised.c (however, somehow I can't see the entire output of the installation). In any case, I couldn't find an error while running the gensim-0.12.4 setup.py Unfortunately, in the jupyter notebook, I still can't import gensim, as it says there is no module named 'gensim' Could this be cause something went wrong during installation anyway??

2016-06-08 16:42 GMT+02:00 s4sarath notifications@github.com:

Hi Vuce ,

Uninstall Cython 0.23 . That might be the version of Cython you have and install Cython 0.21 and try again , Please do let me know .

On Wed, Jun 8, 2016 at 8:07 PM, VuceWillis notifications@github.com wrote:

I have cython installed and executed the setup_ex.py file from the extracted tar-map. I get exactly the same problem as I had before: ValueError: 'word2vec_inner_supervised.pyx' doesn't match any files :(

Any other ideas? Is there maby something wrong with my OS? That would be strange though, since everything else works fine.

2016-06-08 16:15 GMT+02:00 s4sarath notifications@github.com:

Here is the tar file . ​ gensim_mod.tar <

https://drive.google.com/file/d/0B8WO59MFMJxIUXVZOVF0bERkMEk/view?usp=drive_web

On Wed, Jun 8, 2016 at 7:05 PM, VuceWillis notifications@github.com wrote:

Absolutely. Both setup_ex.py and word2vec_inner_supervised.pyx are in the following folder: /home/vuk/Downloads/gensim-0.12.4/gensim/models

Does installing word2vec_supervised still work for you?

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224590234

, or mute the thread <

https://github.com/notifications/unsubscribe/AKJPKM6V2GGbYFL9_CktgwUkqmNCStiCks5qJsUEgaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224602534

, or mute the thread <

https://github.com/notifications/unsubscribe/ASQjUHY9zveJOilsVouUWyh8uIJuunzPks5qJs5sgaJpZM4IkDeW

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub < https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224609898 , or mute the thread < https://github.com/notifications/unsubscribe/AKJPKLatI19o2v_FhxjRmTwHRb3SjefSks5qJtO8gaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224611468, or mute the thread https://github.com/notifications/unsubscribe/ASQjUIm5UfzW_mnsi4pRAju5zIBMZwSIks5qJtTYgaJpZM4IkDeW .

s4sarath commented 8 years ago

Check with normal python command from terminal instead of Ipython. Then check again to import On 8 Jun 2016 20:46, "VuceWillis" notifications@github.com wrote:

Hi Sarath,

There seems to be some improvement! The thing I changed, is setting the 'cd' to Downloads/gensim-0.12.4/ and then run pyhton setup.py install (instead of running sudo python Dowloads/gensim-0.12.4/setup.py install. Perhaps this is some kind of rookie mistake, I'm sorry about that). This didn't give me the error like before of not being able to find the word2vec_inner_supervised.c (however, somehow I can't see the entire output of the installation). In any case, I couldn't find an error while running the gensim-0.12.4 setup.py Unfortunately, in the jupyter notebook, I still can't import gensim, as it says there is no module named 'gensim' Could this be cause something went wrong during installation anyway??

2016-06-08 16:42 GMT+02:00 s4sarath notifications@github.com:

Hi Vuce ,

Uninstall Cython 0.23 . That might be the version of Cython you have and install Cython 0.21 and try again , Please do let me know .

On Wed, Jun 8, 2016 at 8:07 PM, VuceWillis notifications@github.com wrote:

I have cython installed and executed the setup_ex.py file from the extracted tar-map. I get exactly the same problem as I had before: ValueError: 'word2vec_inner_supervised.pyx' doesn't match any files :(

Any other ideas? Is there maby something wrong with my OS? That would be strange though, since everything else works fine.

2016-06-08 16:15 GMT+02:00 s4sarath notifications@github.com:

Here is the tar file . ​ gensim_mod.tar <

https://drive.google.com/file/d/0B8WO59MFMJxIUXVZOVF0bERkMEk/view?usp=drive_web

On Wed, Jun 8, 2016 at 7:05 PM, VuceWillis <notifications@github.com

wrote:

Absolutely. Both setup_ex.py and word2vec_inner_supervised.pyx are in the following folder: /home/vuk/Downloads/gensim-0.12.4/gensim/models

Does installing word2vec_supervised still work for you?

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224590234

, or mute the thread <

https://github.com/notifications/unsubscribe/AKJPKM6V2GGbYFL9_CktgwUkqmNCStiCks5qJsUEgaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224602534

, or mute the thread <

https://github.com/notifications/unsubscribe/ASQjUHY9zveJOilsVouUWyh8uIJuunzPks5qJs5sgaJpZM4IkDeW

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224609898

, or mute the thread <

https://github.com/notifications/unsubscribe/AKJPKLatI19o2v_FhxjRmTwHRb3SjefSks5qJtO8gaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub < https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224611468 , or mute the thread < https://github.com/notifications/unsubscribe/ASQjUIm5UfzW_mnsi4pRAju5zIBMZwSIks5qJtTYgaJpZM4IkDeW

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224622341, or mute the thread https://github.com/notifications/unsubscribe/AKJPKKZgt-BJWTXyFl1ug9LgauWcB8kyks5qJtzQgaJpZM4IkDeW .

VuceWillis commented 8 years ago

No succes. Could it be installed in a place where it should not be installed??

2016-06-08 17:49 GMT+02:00 s4sarath notifications@github.com:

Check with normal python command from terminal instead of Ipython. Then check again to import

On 8 Jun 2016 20:46, "VuceWillis" notifications@github.com wrote:

Hi Sarath,

There seems to be some improvement! The thing I changed, is setting the 'cd' to Downloads/gensim-0.12.4/ and then run pyhton setup.py install (instead of running sudo python Dowloads/gensim-0.12.4/setup.py install. Perhaps this is some kind of rookie mistake, I'm sorry about that). This didn't give me the error like before of not being able to find the word2vec_inner_supervised.c (however, somehow I can't see the entire output of the installation). In any case, I couldn't find an error while running the gensim-0.12.4 setup.py Unfortunately, in the jupyter notebook, I still can't import gensim, as it says there is no module named 'gensim' Could this be cause something went wrong during installation anyway??

2016-06-08 16:42 GMT+02:00 s4sarath notifications@github.com:

Hi Vuce ,

Uninstall Cython 0.23 . That might be the version of Cython you have and install Cython 0.21 and try again , Please do let me know .

On Wed, Jun 8, 2016 at 8:07 PM, VuceWillis notifications@github.com wrote:

I have cython installed and executed the setup_ex.py file from the extracted tar-map. I get exactly the same problem as I had before: ValueError: 'word2vec_inner_supervised.pyx' doesn't match any files :(

Any other ideas? Is there maby something wrong with my OS? That would be strange though, since everything else works fine.

2016-06-08 16:15 GMT+02:00 s4sarath notifications@github.com:

Here is the tar file . ​ gensim_mod.tar <

https://drive.google.com/file/d/0B8WO59MFMJxIUXVZOVF0bERkMEk/view?usp=drive_web

On Wed, Jun 8, 2016 at 7:05 PM, VuceWillis < notifications@github.com

wrote:

Absolutely. Both setup_ex.py and word2vec_inner_supervised.pyx are in the following folder: /home/vuk/Downloads/gensim-0.12.4/gensim/models

Does installing word2vec_supervised still work for you?

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224590234

, or mute the thread <

https://github.com/notifications/unsubscribe/AKJPKM6V2GGbYFL9_CktgwUkqmNCStiCks5qJsUEgaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224602534

, or mute the thread <

https://github.com/notifications/unsubscribe/ASQjUHY9zveJOilsVouUWyh8uIJuunzPks5qJs5sgaJpZM4IkDeW

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224609898

, or mute the thread <

https://github.com/notifications/unsubscribe/AKJPKLatI19o2v_FhxjRmTwHRb3SjefSks5qJtO8gaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224611468

, or mute the thread <

https://github.com/notifications/unsubscribe/ASQjUIm5UfzW_mnsi4pRAju5zIBMZwSIks5qJtTYgaJpZM4IkDeW

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub < https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224622341 , or mute the thread < https://github.com/notifications/unsubscribe/AKJPKKZgt-BJWTXyFl1ug9LgauWcB8kyks5qJtzQgaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224633838, or mute the thread https://github.com/notifications/unsubscribe/ASQjUG5lkx5XKf4oD6GKzHFWCSp7XbMIks5qJuSngaJpZM4IkDeW .

s4sarath commented 8 years ago

Whats the output after installing ? Try restart the system ( even though it is not necessary ) .

On Wed, Jun 8, 2016 at 9:35 PM, VuceWillis notifications@github.com wrote:

No succes. Could it be installed in a place where it should not be installed??

2016-06-08 17:49 GMT+02:00 s4sarath notifications@github.com:

Check with normal python command from terminal instead of Ipython. Then check again to import

On 8 Jun 2016 20:46, "VuceWillis" notifications@github.com wrote:

Hi Sarath,

There seems to be some improvement! The thing I changed, is setting the 'cd' to Downloads/gensim-0.12.4/ and then run pyhton setup.py install (instead of running sudo python Dowloads/gensim-0.12.4/setup.py install. Perhaps this is some kind of rookie mistake, I'm sorry about that). This didn't give me the error like before of not being able to find the word2vec_inner_supervised.c (however, somehow I can't see the entire output of the installation). In any case, I couldn't find an error while running the gensim-0.12.4 setup.py Unfortunately, in the jupyter notebook, I still can't import gensim, as it says there is no module named 'gensim' Could this be cause something went wrong during installation anyway??

2016-06-08 16:42 GMT+02:00 s4sarath notifications@github.com:

Hi Vuce ,

Uninstall Cython 0.23 . That might be the version of Cython you have and install Cython 0.21 and try again , Please do let me know .

On Wed, Jun 8, 2016 at 8:07 PM, VuceWillis <notifications@github.com

wrote:

I have cython installed and executed the setup_ex.py file from the extracted tar-map. I get exactly the same problem as I had before: ValueError: 'word2vec_inner_supervised.pyx' doesn't match any files :(

Any other ideas? Is there maby something wrong with my OS? That would be strange though, since everything else works fine.

2016-06-08 16:15 GMT+02:00 s4sarath notifications@github.com:

Here is the tar file . ​ gensim_mod.tar <

https://drive.google.com/file/d/0B8WO59MFMJxIUXVZOVF0bERkMEk/view?usp=drive_web

On Wed, Jun 8, 2016 at 7:05 PM, VuceWillis < notifications@github.com

wrote:

Absolutely. Both setup_ex.py and word2vec_inner_supervised.pyx are in the following folder: /home/vuk/Downloads/gensim-0.12.4/gensim/models

Does installing word2vec_supervised still work for you?

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224590234

, or mute the thread <

https://github.com/notifications/unsubscribe/AKJPKM6V2GGbYFL9_CktgwUkqmNCStiCks5qJsUEgaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224602534

, or mute the thread <

https://github.com/notifications/unsubscribe/ASQjUHY9zveJOilsVouUWyh8uIJuunzPks5qJs5sgaJpZM4IkDeW

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224609898

, or mute the thread <

https://github.com/notifications/unsubscribe/AKJPKLatI19o2v_FhxjRmTwHRb3SjefSks5qJtO8gaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224611468

, or mute the thread <

https://github.com/notifications/unsubscribe/ASQjUIm5UfzW_mnsi4pRAju5zIBMZwSIks5qJtTYgaJpZM4IkDeW

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224622341

, or mute the thread <

https://github.com/notifications/unsubscribe/AKJPKKZgt-BJWTXyFl1ug9LgauWcB8kyks5qJtzQgaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub < https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224633838 , or mute the thread < https://github.com/notifications/unsubscribe/ASQjUG5lkx5XKf4oD6GKzHFWCSp7XbMIks5qJuSngaJpZM4IkDeW

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224640013, or mute the thread https://github.com/notifications/unsubscribe/AKJPKKNtPtFrkOrqMdrRQG11ZmK7TsgJks5qJuhdgaJpZM4IkDeW .

VuceWillis commented 8 years ago

Restarting the system indeed didn't help.

When installing; first of all, a lot is happening and I still can't see the entire output for some reason. Eventually I see two things that stand out: Installed /usr/local/lib/python2.7/dist-packages/gensim-0.12.4-py2.7-linux-x86_64.egg and: Finished processing dependencies for gensim==0.12.4

However, apparently it still isn't installed.

2016-06-08 18:13 GMT+02:00 s4sarath notifications@github.com:

Whats the output after installing ? Try restart the system ( even though it is not necessary ) .

On Wed, Jun 8, 2016 at 9:35 PM, VuceWillis notifications@github.com wrote:

No succes. Could it be installed in a place where it should not be installed??

2016-06-08 17:49 GMT+02:00 s4sarath notifications@github.com:

Check with normal python command from terminal instead of Ipython. Then check again to import

On 8 Jun 2016 20:46, "VuceWillis" notifications@github.com wrote:

Hi Sarath,

There seems to be some improvement! The thing I changed, is setting the 'cd' to Downloads/gensim-0.12.4/ and then run pyhton setup.py install (instead of running sudo python Dowloads/gensim-0.12.4/setup.py install. Perhaps this is some kind of rookie mistake, I'm sorry about that). This didn't give me the error like before of not being able to find the word2vec_inner_supervised.c (however, somehow I can't see the entire output of the installation). In any case, I couldn't find an error while running the gensim-0.12.4 setup.py Unfortunately, in the jupyter notebook, I still can't import gensim, as it says there is no module named 'gensim' Could this be cause something went wrong during installation anyway??

2016-06-08 16:42 GMT+02:00 s4sarath notifications@github.com:

Hi Vuce ,

Uninstall Cython 0.23 . That might be the version of Cython you have and install Cython 0.21 and try again , Please do let me know .

On Wed, Jun 8, 2016 at 8:07 PM, VuceWillis < notifications@github.com

wrote:

I have cython installed and executed the setup_ex.py file from the extracted tar-map. I get exactly the same problem as I had before: ValueError: 'word2vec_inner_supervised.pyx' doesn't match any files :(

Any other ideas? Is there maby something wrong with my OS? That would be strange though, since everything else works fine.

2016-06-08 16:15 GMT+02:00 s4sarath notifications@github.com:

Here is the tar file . ​ gensim_mod.tar <

https://drive.google.com/file/d/0B8WO59MFMJxIUXVZOVF0bERkMEk/view?usp=drive_web

On Wed, Jun 8, 2016 at 7:05 PM, VuceWillis < notifications@github.com

wrote:

Absolutely. Both setup_ex.py and word2vec_inner_supervised.pyx are in the following folder: /home/vuk/Downloads/gensim-0.12.4/gensim/models

Does installing word2vec_supervised still work for you?

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224590234

, or mute the thread <

https://github.com/notifications/unsubscribe/AKJPKM6V2GGbYFL9_CktgwUkqmNCStiCks5qJsUEgaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224602534

, or mute the thread <

https://github.com/notifications/unsubscribe/ASQjUHY9zveJOilsVouUWyh8uIJuunzPks5qJs5sgaJpZM4IkDeW

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224609898

, or mute the thread <

https://github.com/notifications/unsubscribe/AKJPKLatI19o2v_FhxjRmTwHRb3SjefSks5qJtO8gaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224611468

, or mute the thread <

https://github.com/notifications/unsubscribe/ASQjUIm5UfzW_mnsi4pRAju5zIBMZwSIks5qJtTYgaJpZM4IkDeW

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224622341

, or mute the thread <

https://github.com/notifications/unsubscribe/AKJPKKZgt-BJWTXyFl1ug9LgauWcB8kyks5qJtzQgaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224633838

, or mute the thread <

https://github.com/notifications/unsubscribe/ASQjUG5lkx5XKf4oD6GKzHFWCSp7XbMIks5qJuSngaJpZM4IkDeW

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub < https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224640013 , or mute the thread < https://github.com/notifications/unsubscribe/AKJPKKNtPtFrkOrqMdrRQG11ZmK7TsgJks5qJuhdgaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224642914, or mute the thread https://github.com/notifications/unsubscribe/ASQjUP0OWo6q4GLoHnB3QJhRbEKhcqVVks5qJupEgaJpZM4IkDeW .

s4sarath commented 8 years ago

Try /home/"username of your ubuntu"/anaconda2/bin/python setup.py install inside gensim folder .

On Wed, Jun 8, 2016 at 11:15 PM, VuceWillis notifications@github.com wrote:

Restarting the system indeed didn't help.

When installing; first of all, a lot is happening and I still can't see the entire output for some reason. Eventually I see two things that stand out: Installed /usr/local/lib/python2.7/dist-packages/gensim-0.12.4-py2.7-linux-x86_64.egg and: Finished processing dependencies for gensim==0.12.4

However, apparently it still isn't installed.

2016-06-08 18:13 GMT+02:00 s4sarath notifications@github.com:

Whats the output after installing ? Try restart the system ( even though it is not necessary ) .

On Wed, Jun 8, 2016 at 9:35 PM, VuceWillis notifications@github.com wrote:

No succes. Could it be installed in a place where it should not be installed??

2016-06-08 17:49 GMT+02:00 s4sarath notifications@github.com:

Check with normal python command from terminal instead of Ipython. Then check again to import

On 8 Jun 2016 20:46, "VuceWillis" notifications@github.com wrote:

Hi Sarath,

There seems to be some improvement! The thing I changed, is setting the 'cd' to Downloads/gensim-0.12.4/ and then run pyhton setup.py install (instead of running sudo python Dowloads/gensim-0.12.4/setup.py install. Perhaps this is some kind of rookie mistake, I'm sorry about that). This didn't give me the error like before of not being able to find the word2vec_inner_supervised.c (however, somehow I can't see the entire output of the installation). In any case, I couldn't find an error while running the gensim-0.12.4 setup.py Unfortunately, in the jupyter notebook, I still can't import gensim, as it says there is no module named 'gensim' Could this be cause something went wrong during installation anyway??

2016-06-08 16:42 GMT+02:00 s4sarath notifications@github.com:

Hi Vuce ,

Uninstall Cython 0.23 . That might be the version of Cython you have and install Cython 0.21 and try again , Please do let me know .

On Wed, Jun 8, 2016 at 8:07 PM, VuceWillis < notifications@github.com

wrote:

I have cython installed and executed the setup_ex.py file from the extracted tar-map. I get exactly the same problem as I had before: ValueError: 'word2vec_inner_supervised.pyx' doesn't match any files :(

Any other ideas? Is there maby something wrong with my OS? That would be strange though, since everything else works fine.

2016-06-08 16:15 GMT+02:00 s4sarath <notifications@github.com :

Here is the tar file . ​ gensim_mod.tar <

https://drive.google.com/file/d/0B8WO59MFMJxIUXVZOVF0bERkMEk/view?usp=drive_web

On Wed, Jun 8, 2016 at 7:05 PM, VuceWillis < notifications@github.com

wrote:

Absolutely. Both setup_ex.py and word2vec_inner_supervised.pyx are in the following folder: /home/vuk/Downloads/gensim-0.12.4/gensim/models

Does installing word2vec_supervised still work for you?

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224590234

, or mute the thread <

https://github.com/notifications/unsubscribe/AKJPKM6V2GGbYFL9_CktgwUkqmNCStiCks5qJsUEgaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224602534

, or mute the thread <

https://github.com/notifications/unsubscribe/ASQjUHY9zveJOilsVouUWyh8uIJuunzPks5qJs5sgaJpZM4IkDeW

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224609898

, or mute the thread <

https://github.com/notifications/unsubscribe/AKJPKLatI19o2v_FhxjRmTwHRb3SjefSks5qJtO8gaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224611468

, or mute the thread <

https://github.com/notifications/unsubscribe/ASQjUIm5UfzW_mnsi4pRAju5zIBMZwSIks5qJtTYgaJpZM4IkDeW

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224622341

, or mute the thread <

https://github.com/notifications/unsubscribe/AKJPKKZgt-BJWTXyFl1ug9LgauWcB8kyks5qJtzQgaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224633838

, or mute the thread <

https://github.com/notifications/unsubscribe/ASQjUG5lkx5XKf4oD6GKzHFWCSp7XbMIks5qJuSngaJpZM4IkDeW

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224640013

, or mute the thread <

https://github.com/notifications/unsubscribe/AKJPKKNtPtFrkOrqMdrRQG11ZmK7TsgJks5qJuhdgaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub < https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224642914 , or mute the thread < https://github.com/notifications/unsubscribe/ASQjUP0OWo6q4GLoHnB3QJhRbEKhcqVVks5qJupEgaJpZM4IkDeW

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224671688, or mute the thread https://github.com/notifications/unsubscribe/AKJPKPeTDe-bBy-xWDErlQeykb4epnWiks5qJv-wgaJpZM4IkDeW .

VuceWillis commented 8 years ago

There is no gensim folder in anaconda2/bin/ The following is in the anaconda2/bin/ directory:

2to3 activate activate-global-python-argcomplete anaconda anaconda-navigator asadmin assistant binstar blaze-server bokeh bokeh-server bundle_image cairo-trace cfadmin conda conda-build conda-convert conda-develop conda-env conda-index conda-inspect condamanager conda-metapackage conda-pipbuild conda-server conda-sign conda-skeleton cq createpackage c_rehash curl curl-config curve_keygen cwutil cygdb cython cythonize deactivate designer dynamodb_dump dynamodb_load easy_install easy_install-2.7 elbadmin elf2e32_qtwrapper f2py fc-cache fc-cat fc-list fc-match fc-pattern fc-query fc-scan fc-validate fetch_file findtr fits2bitmap fitscheck fitsdiff fitsheader fitsinfo freetype-config get_objgraph.py gif2h5 glacier grin grind h52gif h5c++ h5cc h5copy h5debug h5diff h5dump h5import h5jam h5ls h5mkgrp h5perf_serial h5redeploy h5repack h5repart h5stat h5unjam idle instance_events iptest iptest2 ipython ipython2 isympy jsonschema jupyter jupyter-console jupyter-kernelspec jupyter-migrate jupyter-nbconvert jupyter-nbextension jupyter-notebook jupyter-qtconsole jupyter-trust kill_instance launch_instance lconvert libdynd-config libpng16-config libpng-config linguist list_instances lrelease lss3 lupdate moc mturk nosetests numba odo openssl patch_capabilities patchelf pep8 pip pixeltool pngfix png-fix-itxt pt2to3 ptdump ptrepack pttree pyami_sendmail pybabel pycc pydoc pyflakes pygmentize pylupdate4 pyrcc4 py.test python python2 python2.7 python-argcomplete-check-easy-install-script python-config pyuic4 qcollectiongenerator qdbus qdbuscpp2xml qdbusviewer qdbusxml2cpp qhelpconverter qhelpgenerator qmake qmlplugindump qmlviewer qt.conf qtconfig qttracereplay rcc redis-benchmark redis-check-aof redis-check-dump redis-cli redis-server register-python-argcomplete route53 rst2html.py rst2latex.py rst2man.py rst2odt_prepstyles.py rst2odt.py rst2pseudoxml.py rst2s5.py rst2xetex.py rst2xml.py rstpep2html.py runxlrd.py s3put samp_hub sdbadmin sip skivi smtpd.py sphinx-apidoc sphinx-autogen sphinx-build sphinx-quickstart spyder sqlite3 syncqt taskadmin tclsh8.5 test_libdynd uic unpickle.py unxz vba_extract.py volint wcslint wheel wish8.5 xml2-config xmlcatalog xmllint xmlpatterns xmlpatternsvalidator xslt-config xsltproc xz

As you can see, there is no gensim.

Interestingly, when I list all the installed packages with pip in python, gensim 0.12.4 is there, but I can not import gensim. Whereas numpy for example (which of course is also there), I can import. Please help

2016-06-09 16:49 GMT+02:00 s4sarath notifications@github.com:

Try /home/"username of your ubuntu"/anaconda2/bin/python setup.py install inside gensim folder .

On Wed, Jun 8, 2016 at 11:15 PM, VuceWillis notifications@github.com wrote:

Restarting the system indeed didn't help.

When installing; first of all, a lot is happening and I still can't see the entire output for some reason. Eventually I see two things that stand out: Installed

/usr/local/lib/python2.7/dist-packages/gensim-0.12.4-py2.7-linux-x86_64.egg and: Finished processing dependencies for gensim==0.12.4

However, apparently it still isn't installed.

2016-06-08 18:13 GMT+02:00 s4sarath notifications@github.com:

Whats the output after installing ? Try restart the system ( even though it is not necessary ) .

On Wed, Jun 8, 2016 at 9:35 PM, VuceWillis notifications@github.com wrote:

No succes. Could it be installed in a place where it should not be installed??

2016-06-08 17:49 GMT+02:00 s4sarath notifications@github.com:

Check with normal python command from terminal instead of Ipython. Then check again to import

On 8 Jun 2016 20:46, "VuceWillis" notifications@github.com wrote:

Hi Sarath,

There seems to be some improvement! The thing I changed, is setting the 'cd' to Downloads/gensim-0.12.4/ and then run pyhton setup.py install (instead of running sudo python Dowloads/gensim-0.12.4/setup.py install. Perhaps this is some kind of rookie mistake, I'm sorry about that). This didn't give me the error like before of not being able to find the word2vec_inner_supervised.c (however, somehow I can't see the entire output of the installation). In any case, I couldn't find an error while running the gensim-0.12.4 setup.py Unfortunately, in the jupyter notebook, I still can't import gensim, as it says there is no module named 'gensim' Could this be cause something went wrong during installation anyway??

2016-06-08 16:42 GMT+02:00 s4sarath notifications@github.com:

Hi Vuce ,

Uninstall Cython 0.23 . That might be the version of Cython you have and install Cython 0.21 and try again , Please do let me know .

On Wed, Jun 8, 2016 at 8:07 PM, VuceWillis < notifications@github.com

wrote:

I have cython installed and executed the setup_ex.py file from the extracted tar-map. I get exactly the same problem as I had before: ValueError: 'word2vec_inner_supervised.pyx' doesn't match any files :(

Any other ideas? Is there maby something wrong with my OS? That would be strange though, since everything else works fine.

2016-06-08 16:15 GMT+02:00 s4sarath < notifications@github.com :

Here is the tar file . ​ gensim_mod.tar <

https://drive.google.com/file/d/0B8WO59MFMJxIUXVZOVF0bERkMEk/view?usp=drive_web

On Wed, Jun 8, 2016 at 7:05 PM, VuceWillis < notifications@github.com

wrote:

Absolutely. Both setup_ex.py and word2vec_inner_supervised.pyx are in the following folder: /home/vuk/Downloads/gensim-0.12.4/gensim/models

Does installing word2vec_supervised still work for you?

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224590234

, or mute the thread <

https://github.com/notifications/unsubscribe/AKJPKM6V2GGbYFL9_CktgwUkqmNCStiCks5qJsUEgaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224602534

, or mute the thread <

https://github.com/notifications/unsubscribe/ASQjUHY9zveJOilsVouUWyh8uIJuunzPks5qJs5sgaJpZM4IkDeW

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224609898

, or mute the thread <

https://github.com/notifications/unsubscribe/AKJPKLatI19o2v_FhxjRmTwHRb3SjefSks5qJtO8gaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224611468

, or mute the thread <

https://github.com/notifications/unsubscribe/ASQjUIm5UfzW_mnsi4pRAju5zIBMZwSIks5qJtTYgaJpZM4IkDeW

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224622341

, or mute the thread <

https://github.com/notifications/unsubscribe/AKJPKKZgt-BJWTXyFl1ug9LgauWcB8kyks5qJtzQgaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224633838

, or mute the thread <

https://github.com/notifications/unsubscribe/ASQjUG5lkx5XKf4oD6GKzHFWCSp7XbMIks5qJuSngaJpZM4IkDeW

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224640013

, or mute the thread <

https://github.com/notifications/unsubscribe/AKJPKKNtPtFrkOrqMdrRQG11ZmK7TsgJks5qJuhdgaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224642914

, or mute the thread <

https://github.com/notifications/unsubscribe/ASQjUP0OWo6q4GLoHnB3QJhRbEKhcqVVks5qJupEgaJpZM4IkDeW

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub < https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224671688 , or mute the thread < https://github.com/notifications/unsubscribe/AKJPKPeTDe-bBy-xWDErlQeykb4epnWiks5qJv-wgaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224919129, or mute the thread https://github.com/notifications/unsubscribe/ASQjUHmQjaYmrb-18C-JtWI8yQQhMO4Uks5qKCgSgaJpZM4IkDeW .

s4sarath commented 8 years ago

No no. Wat I meant is go to the gensim setup folder which you cloned from my repo and run the command above. On 9 Jun 2016 21:39, "VuceWillis" notifications@github.com wrote:

There is no gensim folder in anaconda2/bin/ The following is in the anaconda2/bin/ directory:

2to3 activate activate-global-python-argcomplete anaconda anaconda-navigator asadmin assistant binstar blaze-server bokeh bokeh-server bundle_image cairo-trace cfadmin conda conda-build conda-convert conda-develop conda-env conda-index conda-inspect condamanager conda-metapackage conda-pipbuild conda-server conda-sign conda-skeleton cq createpackage c_rehash curl curl-config curve_keygen cwutil cygdb cython cythonize deactivate designer dynamodb_dump dynamodb_load easy_install easy_install-2.7 elbadmin elf2e32_qtwrapper f2py fc-cache fc-cat fc-list fc-match fc-pattern fc-query fc-scan fc-validate fetch_file findtr fits2bitmap fitscheck fitsdiff fitsheader fitsinfo freetype-config get_objgraph.py gif2h5 glacier grin grind h52gif h5c++ h5cc h5copy h5debug h5diff h5dump h5import h5jam h5ls h5mkgrp h5perf_serial h5redeploy h5repack h5repart h5stat h5unjam idle instance_events iptest iptest2 ipython ipython2 isympy jsonschema jupyter jupyter-console jupyter-kernelspec jupyter-migrate jupyter-nbconvert jupyter-nbextension jupyter-notebook jupyter-qtconsole jupyter-trust kill_instance launch_instance lconvert libdynd-config libpng16-config libpng-config linguist list_instances lrelease lss3 lupdate moc mturk nosetests numba odo openssl patch_capabilities patchelf pep8 pip pixeltool pngfix png-fix-itxt pt2to3 ptdump ptrepack pttree pyami_sendmail pybabel pycc pydoc pyflakes pygmentize pylupdate4 pyrcc4 py.test python python2 python2.7 python-argcomplete-check-easy-install-script python-config pyuic4 qcollectiongenerator qdbus qdbuscpp2xml qdbusviewer qdbusxml2cpp qhelpconverter qhelpgenerator qmake qmlplugindump qmlviewer qt.conf qtconfig qttracereplay rcc redis-benchmark redis-check-aof redis-check-dump redis-cli redis-server register-python-argcomplete route53 rst2html.py rst2latex.py rst2man.py rst2odt_prepstyles.py rst2odt.py rst2pseudoxml.py rst2s5.py rst2xetex.py rst2xml.py rstpep2html.py runxlrd.py s3put samp_hub sdbadmin sip skivi smtpd.py sphinx-apidoc sphinx-autogen sphinx-build sphinx-quickstart spyder sqlite3 syncqt taskadmin tclsh8.5 test_libdynd uic unpickle.py unxz vba_extract.py volint wcslint wheel wish8.5 xml2-config xmlcatalog xmllint xmlpatterns xmlpatternsvalidator xslt-config xsltproc xz

As you can see, there is no gensim.

Interestingly, when I list all the installed packages with pip in python, gensim 0.12.4 is there, but I can not import gensim. Whereas numpy for example (which of course is also there), I can import. Please help

2016-06-09 16:49 GMT+02:00 s4sarath notifications@github.com:

Try /home/"username of your ubuntu"/anaconda2/bin/python setup.py install inside gensim folder .

On Wed, Jun 8, 2016 at 11:15 PM, VuceWillis notifications@github.com wrote:

Restarting the system indeed didn't help.

When installing; first of all, a lot is happening and I still can't see the entire output for some reason. Eventually I see two things that stand out: Installed

/usr/local/lib/python2.7/dist-packages/gensim-0.12.4-py2.7-linux-x86_64.egg

and: Finished processing dependencies for gensim==0.12.4

However, apparently it still isn't installed.

2016-06-08 18:13 GMT+02:00 s4sarath notifications@github.com:

Whats the output after installing ? Try restart the system ( even though it is not necessary ) .

On Wed, Jun 8, 2016 at 9:35 PM, VuceWillis <notifications@github.com

wrote:

No succes. Could it be installed in a place where it should not be installed??

2016-06-08 17:49 GMT+02:00 s4sarath notifications@github.com:

Check with normal python command from terminal instead of Ipython. Then check again to import

On 8 Jun 2016 20:46, "VuceWillis" notifications@github.com wrote:

Hi Sarath,

There seems to be some improvement! The thing I changed, is setting the 'cd' to Downloads/gensim-0.12.4/ and then run pyhton setup.py install (instead of running sudo python Dowloads/gensim-0.12.4/setup.py install. Perhaps this is some kind of rookie mistake, I'm sorry about that). This didn't give me the error like before of not being able to find the word2vec_inner_supervised.c (however, somehow I can't see the entire output of the installation). In any case, I couldn't find an error while running the gensim-0.12.4 setup.py Unfortunately, in the jupyter notebook, I still can't import gensim, as it says there is no module named 'gensim' Could this be cause something went wrong during installation anyway??

2016-06-08 16:42 GMT+02:00 s4sarath <notifications@github.com :

Hi Vuce ,

Uninstall Cython 0.23 . That might be the version of Cython you have and install Cython 0.21 and try again , Please do let me know .

On Wed, Jun 8, 2016 at 8:07 PM, VuceWillis < notifications@github.com

wrote:

I have cython installed and executed the setup_ex.py file from the extracted tar-map. I get exactly the same problem as I had before: ValueError: 'word2vec_inner_supervised.pyx' doesn't match any files :(

Any other ideas? Is there maby something wrong with my OS? That would be strange though, since everything else works fine.

2016-06-08 16:15 GMT+02:00 s4sarath < notifications@github.com :

Here is the tar file . ​ gensim_mod.tar <

https://drive.google.com/file/d/0B8WO59MFMJxIUXVZOVF0bERkMEk/view?usp=drive_web

On Wed, Jun 8, 2016 at 7:05 PM, VuceWillis < notifications@github.com

wrote:

Absolutely. Both setup_ex.py and word2vec_inner_supervised.pyx are in the following folder: /home/vuk/Downloads/gensim-0.12.4/gensim/models

Does installing word2vec_supervised still work for you?

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224590234

, or mute the thread <

https://github.com/notifications/unsubscribe/AKJPKM6V2GGbYFL9_CktgwUkqmNCStiCks5qJsUEgaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224602534

, or mute the thread <

https://github.com/notifications/unsubscribe/ASQjUHY9zveJOilsVouUWyh8uIJuunzPks5qJs5sgaJpZM4IkDeW

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224609898

, or mute the thread <

https://github.com/notifications/unsubscribe/AKJPKLatI19o2v_FhxjRmTwHRb3SjefSks5qJtO8gaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224611468

, or mute the thread <

https://github.com/notifications/unsubscribe/ASQjUIm5UfzW_mnsi4pRAju5zIBMZwSIks5qJtTYgaJpZM4IkDeW

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224622341

, or mute the thread <

https://github.com/notifications/unsubscribe/AKJPKKZgt-BJWTXyFl1ug9LgauWcB8kyks5qJtzQgaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224633838

, or mute the thread <

https://github.com/notifications/unsubscribe/ASQjUG5lkx5XKf4oD6GKzHFWCSp7XbMIks5qJuSngaJpZM4IkDeW

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224640013

, or mute the thread <

https://github.com/notifications/unsubscribe/AKJPKKNtPtFrkOrqMdrRQG11ZmK7TsgJks5qJuhdgaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224642914

, or mute the thread <

https://github.com/notifications/unsubscribe/ASQjUP0OWo6q4GLoHnB3QJhRbEKhcqVVks5qJupEgaJpZM4IkDeW

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224671688

, or mute the thread <

https://github.com/notifications/unsubscribe/AKJPKPeTDe-bBy-xWDErlQeykb4epnWiks5qJv-wgaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub < https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224919129 , or mute the thread < https://github.com/notifications/unsubscribe/ASQjUHmQjaYmrb-18C-JtWI8yQQhMO4Uks5qKCgSgaJpZM4IkDeW

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224944427, or mute the thread https://github.com/notifications/unsubscribe/AKJPKBHcgJtJLSxuVzkCQhMKoMvXjZENks5qKDq0gaJpZM4IkDeW .

VuceWillis commented 8 years ago

So, I'll explain every step I just did, just to be sure you know exactly what I do.

First of all I did: cd anaconda2/bin/ Then I did: vuk@vuk-Lenovo-Z50-75:~/anaconda2/bin$ sudo python /home/vuk/Downloads/gensim-0.12.4/setup.py install

which unfortunately gave me: x86_64-linux-gnu-gcc: error: ./gensim/models/word2vec_inner.c: No such file or directory

(I checked, but word2vec_inner.c is in the directory, so I still don't understand why he can't find it)

2016-06-09 18:11 GMT+02:00 s4sarath notifications@github.com:

No no. Wat I meant is go to the gensim setup folder which you cloned from my repo and run the command above.

On 9 Jun 2016 21:39, "VuceWillis" notifications@github.com wrote:

There is no gensim folder in anaconda2/bin/ The following is in the anaconda2/bin/ directory:

2to3 activate activate-global-python-argcomplete anaconda anaconda-navigator asadmin assistant binstar blaze-server bokeh bokeh-server bundle_image cairo-trace cfadmin conda conda-build conda-convert conda-develop conda-env conda-index conda-inspect condamanager conda-metapackage conda-pipbuild conda-server conda-sign conda-skeleton cq createpackage c_rehash curl curl-config curve_keygen cwutil cygdb cython cythonize deactivate designer dynamodb_dump dynamodb_load easy_install easy_install-2.7 elbadmin elf2e32_qtwrapper f2py fc-cache fc-cat fc-list fc-match fc-pattern fc-query fc-scan fc-validate fetch_file findtr fits2bitmap fitscheck fitsdiff fitsheader fitsinfo freetype-config get_objgraph.py gif2h5 glacier grin grind h52gif h5c++ h5cc h5copy h5debug h5diff h5dump h5import h5jam h5ls h5mkgrp h5perf_serial h5redeploy h5repack h5repart h5stat h5unjam idle instance_events iptest iptest2 ipython ipython2 isympy jsonschema jupyter jupyter-console jupyter-kernelspec jupyter-migrate jupyter-nbconvert jupyter-nbextension jupyter-notebook jupyter-qtconsole jupyter-trust kill_instance launch_instance lconvert libdynd-config libpng16-config libpng-config linguist list_instances lrelease lss3 lupdate moc mturk nosetests numba odo openssl patch_capabilities patchelf pep8 pip pixeltool pngfix png-fix-itxt pt2to3 ptdump ptrepack pttree pyami_sendmail pybabel pycc pydoc pyflakes pygmentize pylupdate4 pyrcc4 py.test python python2 python2.7 python-argcomplete-check-easy-install-script python-config pyuic4 qcollectiongenerator qdbus qdbuscpp2xml qdbusviewer qdbusxml2cpp qhelpconverter qhelpgenerator qmake qmlplugindump qmlviewer qt.conf qtconfig qttracereplay rcc redis-benchmark redis-check-aof redis-check-dump redis-cli redis-server register-python-argcomplete route53 rst2html.py rst2latex.py rst2man.py rst2odt_prepstyles.py rst2odt.py rst2pseudoxml.py rst2s5.py rst2xetex.py rst2xml.py rstpep2html.py runxlrd.py s3put samp_hub sdbadmin sip skivi smtpd.py sphinx-apidoc sphinx-autogen sphinx-build sphinx-quickstart spyder sqlite3 syncqt taskadmin tclsh8.5 test_libdynd uic unpickle.py unxz vba_extract.py volint wcslint wheel wish8.5 xml2-config xmlcatalog xmllint xmlpatterns xmlpatternsvalidator xslt-config xsltproc xz

As you can see, there is no gensim.

Interestingly, when I list all the installed packages with pip in python, gensim 0.12.4 is there, but I can not import gensim. Whereas numpy for example (which of course is also there), I can import. Please help

2016-06-09 16:49 GMT+02:00 s4sarath notifications@github.com:

Try /home/"username of your ubuntu"/anaconda2/bin/python setup.py install inside gensim folder .

On Wed, Jun 8, 2016 at 11:15 PM, VuceWillis notifications@github.com wrote:

Restarting the system indeed didn't help.

When installing; first of all, a lot is happening and I still can't see the entire output for some reason. Eventually I see two things that stand out: Installed

/usr/local/lib/python2.7/dist-packages/gensim-0.12.4-py2.7-linux-x86_64.egg

and: Finished processing dependencies for gensim==0.12.4

However, apparently it still isn't installed.

2016-06-08 18:13 GMT+02:00 s4sarath notifications@github.com:

Whats the output after installing ? Try restart the system ( even though it is not necessary ) .

On Wed, Jun 8, 2016 at 9:35 PM, VuceWillis < notifications@github.com

wrote:

No succes. Could it be installed in a place where it should not be installed??

2016-06-08 17:49 GMT+02:00 s4sarath notifications@github.com:

Check with normal python command from terminal instead of Ipython. Then check again to import

On 8 Jun 2016 20:46, "VuceWillis" notifications@github.com wrote:

Hi Sarath,

There seems to be some improvement! The thing I changed, is setting the 'cd' to Downloads/gensim-0.12.4/ and then run pyhton setup.py install (instead of running sudo python Dowloads/gensim-0.12.4/setup.py install. Perhaps this is some kind of rookie mistake, I'm sorry about that). This didn't give me the error like before of not being able to find the word2vec_inner_supervised.c (however, somehow I can't see the entire output of the installation). In any case, I couldn't find an error while running the gensim-0.12.4 setup.py Unfortunately, in the jupyter notebook, I still can't import gensim, as it says there is no module named 'gensim' Could this be cause something went wrong during installation anyway??

2016-06-08 16:42 GMT+02:00 s4sarath < notifications@github.com :

Hi Vuce ,

Uninstall Cython 0.23 . That might be the version of Cython you have and install Cython 0.21 and try again , Please do let me know .

On Wed, Jun 8, 2016 at 8:07 PM, VuceWillis < notifications@github.com

wrote:

I have cython installed and executed the setup_ex.py file from the extracted tar-map. I get exactly the same problem as I had before: ValueError: 'word2vec_inner_supervised.pyx' doesn't match any files :(

Any other ideas? Is there maby something wrong with my OS? That would be strange though, since everything else works fine.

2016-06-08 16:15 GMT+02:00 s4sarath < notifications@github.com :

Here is the tar file . ​ gensim_mod.tar <

https://drive.google.com/file/d/0B8WO59MFMJxIUXVZOVF0bERkMEk/view?usp=drive_web

On Wed, Jun 8, 2016 at 7:05 PM, VuceWillis < notifications@github.com

wrote:

Absolutely. Both setup_ex.py and word2vec_inner_supervised.pyx are in the following folder: /home/vuk/Downloads/gensim-0.12.4/gensim/models

Does installing word2vec_supervised still work for you?

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224590234

, or mute the thread <

https://github.com/notifications/unsubscribe/AKJPKM6V2GGbYFL9_CktgwUkqmNCStiCks5qJsUEgaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224602534

, or mute the thread <

https://github.com/notifications/unsubscribe/ASQjUHY9zveJOilsVouUWyh8uIJuunzPks5qJs5sgaJpZM4IkDeW

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224609898

, or mute the thread <

https://github.com/notifications/unsubscribe/AKJPKLatI19o2v_FhxjRmTwHRb3SjefSks5qJtO8gaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224611468

, or mute the thread <

https://github.com/notifications/unsubscribe/ASQjUIm5UfzW_mnsi4pRAju5zIBMZwSIks5qJtTYgaJpZM4IkDeW

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224622341

, or mute the thread <

https://github.com/notifications/unsubscribe/AKJPKKZgt-BJWTXyFl1ug9LgauWcB8kyks5qJtzQgaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224633838

, or mute the thread <

https://github.com/notifications/unsubscribe/ASQjUG5lkx5XKf4oD6GKzHFWCSp7XbMIks5qJuSngaJpZM4IkDeW

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224640013

, or mute the thread <

https://github.com/notifications/unsubscribe/AKJPKKNtPtFrkOrqMdrRQG11ZmK7TsgJks5qJuhdgaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224642914

, or mute the thread <

https://github.com/notifications/unsubscribe/ASQjUP0OWo6q4GLoHnB3QJhRbEKhcqVVks5qJupEgaJpZM4IkDeW

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224671688

, or mute the thread <

https://github.com/notifications/unsubscribe/AKJPKPeTDe-bBy-xWDErlQeykb4epnWiks5qJv-wgaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224919129

, or mute the thread <

https://github.com/notifications/unsubscribe/ASQjUHmQjaYmrb-18C-JtWI8yQQhMO4Uks5qKCgSgaJpZM4IkDeW

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub < https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224944427 , or mute the thread < https://github.com/notifications/unsubscribe/AKJPKBHcgJtJLSxuVzkCQhMKoMvXjZENks5qKDq0gaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224944945, or mute the thread https://github.com/notifications/unsubscribe/ASQjUE3UOx2lDcsTKMWZ43sRM4VOjVmkks5qKDsmgaJpZM4IkDeW .

s4sarath commented 8 years ago

No don't do that way .

CD to gensim0.12 folder. Always be in the folder where you have setup.py Then do

/home/username/anaconda2/bin/python setup.py install On 9 Jun 2016 22:14, "VuceWillis" notifications@github.com wrote:

So, I'll explain every step I just did, just to be sure you know exactly what I do.

First of all I did: cd anaconda2/bin/ Then I did: vuk@vuk-Lenovo-Z50-75:~/anaconda2/bin$ sudo python /home/vuk/Downloads/gensim-0.12.4/setup.py install

which unfortunately gave me: x86_64-linux-gnu-gcc: error: ./gensim/models/word2vec_inner.c: No such file or directory

(I checked, but word2vec_inner.c is in the directory, so I still don't understand why he can't find it)

2016-06-09 18:11 GMT+02:00 s4sarath notifications@github.com:

No no. Wat I meant is go to the gensim setup folder which you cloned from my repo and run the command above.

On 9 Jun 2016 21:39, "VuceWillis" notifications@github.com wrote:

There is no gensim folder in anaconda2/bin/ The following is in the anaconda2/bin/ directory:

2to3 activate activate-global-python-argcomplete anaconda anaconda-navigator asadmin assistant binstar blaze-server bokeh bokeh-server bundle_image cairo-trace cfadmin conda conda-build conda-convert conda-develop conda-env conda-index conda-inspect condamanager conda-metapackage conda-pipbuild conda-server conda-sign conda-skeleton cq createpackage c_rehash curl curl-config curve_keygen cwutil cygdb cython cythonize deactivate designer dynamodb_dump dynamodb_load easy_install easy_install-2.7 elbadmin elf2e32_qtwrapper f2py fc-cache fc-cat fc-list fc-match fc-pattern fc-query fc-scan fc-validate fetch_file findtr fits2bitmap fitscheck fitsdiff fitsheader fitsinfo freetype-config get_objgraph.py gif2h5 glacier grin grind h52gif h5c++ h5cc h5copy h5debug h5diff h5dump h5import h5jam h5ls h5mkgrp h5perf_serial h5redeploy h5repack h5repart h5stat h5unjam idle instance_events iptest iptest2 ipython ipython2 isympy jsonschema jupyter jupyter-console jupyter-kernelspec jupyter-migrate jupyter-nbconvert jupyter-nbextension jupyter-notebook jupyter-qtconsole jupyter-trust kill_instance launch_instance lconvert libdynd-config libpng16-config libpng-config linguist list_instances lrelease lss3 lupdate moc mturk nosetests numba odo openssl patch_capabilities patchelf pep8 pip pixeltool pngfix png-fix-itxt pt2to3 ptdump ptrepack pttree pyami_sendmail pybabel pycc pydoc pyflakes pygmentize pylupdate4 pyrcc4 py.test python python2 python2.7 python-argcomplete-check-easy-install-script python-config pyuic4 qcollectiongenerator qdbus qdbuscpp2xml qdbusviewer qdbusxml2cpp qhelpconverter qhelpgenerator qmake qmlplugindump qmlviewer qt.conf qtconfig qttracereplay rcc redis-benchmark redis-check-aof redis-check-dump redis-cli redis-server register-python-argcomplete route53 rst2html.py rst2latex.py rst2man.py rst2odt_prepstyles.py rst2odt.py rst2pseudoxml.py rst2s5.py rst2xetex.py rst2xml.py rstpep2html.py runxlrd.py s3put samp_hub sdbadmin sip skivi smtpd.py sphinx-apidoc sphinx-autogen sphinx-build sphinx-quickstart spyder sqlite3 syncqt taskadmin tclsh8.5 test_libdynd uic unpickle.py unxz vba_extract.py volint wcslint wheel wish8.5 xml2-config xmlcatalog xmllint xmlpatterns xmlpatternsvalidator xslt-config xsltproc xz

As you can see, there is no gensim.

Interestingly, when I list all the installed packages with pip in python, gensim 0.12.4 is there, but I can not import gensim. Whereas numpy for example (which of course is also there), I can import. Please help

2016-06-09 16:49 GMT+02:00 s4sarath notifications@github.com:

Try /home/"username of your ubuntu"/anaconda2/bin/python setup.py install inside gensim folder .

On Wed, Jun 8, 2016 at 11:15 PM, VuceWillis < notifications@github.com> wrote:

Restarting the system indeed didn't help.

When installing; first of all, a lot is happening and I still can't see the entire output for some reason. Eventually I see two things that stand out: Installed

/usr/local/lib/python2.7/dist-packages/gensim-0.12.4-py2.7-linux-x86_64.egg

and: Finished processing dependencies for gensim==0.12.4

However, apparently it still isn't installed.

2016-06-08 18:13 GMT+02:00 s4sarath notifications@github.com:

Whats the output after installing ? Try restart the system ( even though it is not necessary ) .

On Wed, Jun 8, 2016 at 9:35 PM, VuceWillis < notifications@github.com

wrote:

No succes. Could it be installed in a place where it should not be installed??

2016-06-08 17:49 GMT+02:00 s4sarath <notifications@github.com :

Check with normal python command from terminal instead of Ipython. Then check again to import

On 8 Jun 2016 20:46, "VuceWillis" notifications@github.com wrote:

Hi Sarath,

There seems to be some improvement! The thing I changed, is setting the 'cd' to Downloads/gensim-0.12.4/ and then run pyhton setup.py install (instead of running sudo python Dowloads/gensim-0.12.4/setup.py install. Perhaps this is some kind of rookie mistake, I'm sorry about that). This didn't give me the error like before of not being able to find the word2vec_inner_supervised.c (however, somehow I can't see the entire output of the installation). In any case, I couldn't find an error while running the gensim-0.12.4 setup.py Unfortunately, in the jupyter notebook, I still can't import gensim, as it says there is no module named 'gensim' Could this be cause something went wrong during installation anyway??

2016-06-08 16:42 GMT+02:00 s4sarath < notifications@github.com :

Hi Vuce ,

Uninstall Cython 0.23 . That might be the version of Cython you have and install Cython 0.21 and try again , Please do let me know .

On Wed, Jun 8, 2016 at 8:07 PM, VuceWillis < notifications@github.com

wrote:

I have cython installed and executed the setup_ex.py file from the extracted tar-map. I get exactly the same problem as I had before: ValueError: 'word2vec_inner_supervised.pyx' doesn't match any files :(

Any other ideas? Is there maby something wrong with my OS? That would be strange though, since everything else works fine.

2016-06-08 16:15 GMT+02:00 s4sarath < notifications@github.com :

Here is the tar file . ​ gensim_mod.tar <

https://drive.google.com/file/d/0B8WO59MFMJxIUXVZOVF0bERkMEk/view?usp=drive_web

On Wed, Jun 8, 2016 at 7:05 PM, VuceWillis < notifications@github.com

wrote:

Absolutely. Both setup_ex.py and word2vec_inner_supervised.pyx are in the following folder: /home/vuk/Downloads/gensim-0.12.4/gensim/models

Does installing word2vec_supervised still work for you?

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224590234

, or mute the thread <

https://github.com/notifications/unsubscribe/AKJPKM6V2GGbYFL9_CktgwUkqmNCStiCks5qJsUEgaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224602534

, or mute the thread <

https://github.com/notifications/unsubscribe/ASQjUHY9zveJOilsVouUWyh8uIJuunzPks5qJs5sgaJpZM4IkDeW

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224609898

, or mute the thread <

https://github.com/notifications/unsubscribe/AKJPKLatI19o2v_FhxjRmTwHRb3SjefSks5qJtO8gaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224611468

, or mute the thread <

https://github.com/notifications/unsubscribe/ASQjUIm5UfzW_mnsi4pRAju5zIBMZwSIks5qJtTYgaJpZM4IkDeW

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224622341

, or mute the thread <

https://github.com/notifications/unsubscribe/AKJPKKZgt-BJWTXyFl1ug9LgauWcB8kyks5qJtzQgaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224633838

, or mute the thread <

https://github.com/notifications/unsubscribe/ASQjUG5lkx5XKf4oD6GKzHFWCSp7XbMIks5qJuSngaJpZM4IkDeW

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224640013

, or mute the thread <

https://github.com/notifications/unsubscribe/AKJPKKNtPtFrkOrqMdrRQG11ZmK7TsgJks5qJuhdgaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224642914

, or mute the thread <

https://github.com/notifications/unsubscribe/ASQjUP0OWo6q4GLoHnB3QJhRbEKhcqVVks5qJupEgaJpZM4IkDeW

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224671688

, or mute the thread <

https://github.com/notifications/unsubscribe/AKJPKPeTDe-bBy-xWDErlQeykb4epnWiks5qJv-wgaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224919129

, or mute the thread <

https://github.com/notifications/unsubscribe/ASQjUHmQjaYmrb-18C-JtWI8yQQhMO4Uks5qKCgSgaJpZM4IkDeW

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224944427

, or mute the thread <

https://github.com/notifications/unsubscribe/AKJPKBHcgJtJLSxuVzkCQhMKoMvXjZENks5qKDq0gaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub < https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224944945 , or mute the thread < https://github.com/notifications/unsubscribe/ASQjUE3UOx2lDcsTKMWZ43sRM4VOjVmkks5qKDsmgaJpZM4IkDeW

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224954889, or mute the thread https://github.com/notifications/unsubscribe/AKJPKIndmBuDGIxgqMkB_aaTMQGIsWj9ks5qKEL4gaJpZM4IkDeW .

VuceWillis commented 8 years ago

Awesome! Thank you very much! This worked and I installed it and I can import the gensim module :)

2016-06-09 18:52 GMT+02:00 s4sarath notifications@github.com:

No don't do that way .

CD to gensim0.12 folder. Always be in the folder where you have setup.py Then do

/home/username/anaconda2/bin/python setup.py install

On 9 Jun 2016 22:14, "VuceWillis" notifications@github.com wrote:

So, I'll explain every step I just did, just to be sure you know exactly what I do.

First of all I did: cd anaconda2/bin/ Then I did: vuk@vuk-Lenovo-Z50-75:~/anaconda2/bin$ sudo python /home/vuk/Downloads/gensim-0.12.4/setup.py install

which unfortunately gave me: x86_64-linux-gnu-gcc: error: ./gensim/models/word2vec_inner.c: No such file or directory

(I checked, but word2vec_inner.c is in the directory, so I still don't understand why he can't find it)

2016-06-09 18:11 GMT+02:00 s4sarath notifications@github.com:

No no. Wat I meant is go to the gensim setup folder which you cloned from my repo and run the command above.

On 9 Jun 2016 21:39, "VuceWillis" notifications@github.com wrote:

There is no gensim folder in anaconda2/bin/ The following is in the anaconda2/bin/ directory:

2to3 activate activate-global-python-argcomplete anaconda anaconda-navigator asadmin assistant binstar blaze-server bokeh bokeh-server bundle_image cairo-trace cfadmin conda conda-build conda-convert conda-develop conda-env conda-index conda-inspect condamanager conda-metapackage conda-pipbuild conda-server conda-sign conda-skeleton cq createpackage c_rehash curl curl-config curve_keygen cwutil cygdb cython cythonize deactivate designer dynamodb_dump dynamodb_load easy_install easy_install-2.7 elbadmin elf2e32_qtwrapper f2py fc-cache fc-cat fc-list fc-match fc-pattern fc-query fc-scan fc-validate fetch_file findtr fits2bitmap fitscheck fitsdiff fitsheader fitsinfo freetype-config get_objgraph.py gif2h5 glacier grin grind h52gif h5c++ h5cc h5copy h5debug h5diff h5dump h5import h5jam h5ls h5mkgrp h5perf_serial h5redeploy h5repack h5repart h5stat h5unjam idle instance_events iptest iptest2 ipython ipython2 isympy jsonschema jupyter jupyter-console jupyter-kernelspec jupyter-migrate jupyter-nbconvert jupyter-nbextension jupyter-notebook jupyter-qtconsole jupyter-trust kill_instance launch_instance lconvert libdynd-config libpng16-config libpng-config linguist list_instances lrelease lss3 lupdate moc mturk nosetests numba odo openssl patch_capabilities patchelf pep8 pip pixeltool pngfix png-fix-itxt pt2to3 ptdump ptrepack pttree pyami_sendmail pybabel pycc pydoc pyflakes pygmentize pylupdate4 pyrcc4 py.test python python2 python2.7 python-argcomplete-check-easy-install-script python-config pyuic4 qcollectiongenerator qdbus qdbuscpp2xml qdbusviewer qdbusxml2cpp qhelpconverter qhelpgenerator qmake qmlplugindump qmlviewer qt.conf qtconfig qttracereplay rcc redis-benchmark redis-check-aof redis-check-dump redis-cli redis-server register-python-argcomplete route53 rst2html.py rst2latex.py rst2man.py rst2odt_prepstyles.py rst2odt.py rst2pseudoxml.py rst2s5.py rst2xetex.py rst2xml.py rstpep2html.py runxlrd.py s3put samp_hub sdbadmin sip skivi smtpd.py sphinx-apidoc sphinx-autogen sphinx-build sphinx-quickstart spyder sqlite3 syncqt taskadmin tclsh8.5 test_libdynd uic unpickle.py unxz vba_extract.py volint wcslint wheel wish8.5 xml2-config xmlcatalog xmllint xmlpatterns xmlpatternsvalidator xslt-config xsltproc xz

As you can see, there is no gensim.

Interestingly, when I list all the installed packages with pip in python, gensim 0.12.4 is there, but I can not import gensim. Whereas numpy for example (which of course is also there), I can import. Please help

2016-06-09 16:49 GMT+02:00 s4sarath notifications@github.com:

Try /home/"username of your ubuntu"/anaconda2/bin/python setup.py install inside gensim folder .

On Wed, Jun 8, 2016 at 11:15 PM, VuceWillis < notifications@github.com> wrote:

Restarting the system indeed didn't help.

When installing; first of all, a lot is happening and I still can't see the entire output for some reason. Eventually I see two things that stand out: Installed

/usr/local/lib/python2.7/dist-packages/gensim-0.12.4-py2.7-linux-x86_64.egg

and: Finished processing dependencies for gensim==0.12.4

However, apparently it still isn't installed.

2016-06-08 18:13 GMT+02:00 s4sarath notifications@github.com:

Whats the output after installing ? Try restart the system ( even though it is not necessary ) .

On Wed, Jun 8, 2016 at 9:35 PM, VuceWillis < notifications@github.com

wrote:

No succes. Could it be installed in a place where it should not be installed??

2016-06-08 17:49 GMT+02:00 s4sarath < notifications@github.com :

Check with normal python command from terminal instead of Ipython. Then check again to import

On 8 Jun 2016 20:46, "VuceWillis" < notifications@github.com> wrote:

Hi Sarath,

There seems to be some improvement! The thing I changed, is setting the 'cd' to Downloads/gensim-0.12.4/ and then run pyhton setup.py install (instead of running sudo python Dowloads/gensim-0.12.4/setup.py install. Perhaps this is some kind of rookie mistake, I'm sorry about that). This didn't give me the error like before of not being able to find the word2vec_inner_supervised.c (however, somehow I can't see the entire output of the installation). In any case, I couldn't find an error while running the gensim-0.12.4 setup.py Unfortunately, in the jupyter notebook, I still can't import gensim, as it says there is no module named 'gensim' Could this be cause something went wrong during installation anyway??

2016-06-08 16:42 GMT+02:00 s4sarath < notifications@github.com :

Hi Vuce ,

Uninstall Cython 0.23 . That might be the version of Cython you have and install Cython 0.21 and try again , Please do let me know .

On Wed, Jun 8, 2016 at 8:07 PM, VuceWillis < notifications@github.com

wrote:

I have cython installed and executed the setup_ex.py file from the extracted tar-map. I get exactly the same problem as I had before: ValueError: 'word2vec_inner_supervised.pyx' doesn't match any files :(

Any other ideas? Is there maby something wrong with my OS? That would be strange though, since everything else works fine.

2016-06-08 16:15 GMT+02:00 s4sarath < notifications@github.com :

Here is the tar file . ​ gensim_mod.tar <

https://drive.google.com/file/d/0B8WO59MFMJxIUXVZOVF0bERkMEk/view?usp=drive_web

On Wed, Jun 8, 2016 at 7:05 PM, VuceWillis < notifications@github.com

wrote:

Absolutely. Both setup_ex.py and word2vec_inner_supervised.pyx are in the following folder: /home/vuk/Downloads/gensim-0.12.4/gensim/models

Does installing word2vec_supervised still work for you?

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224590234

, or mute the thread <

https://github.com/notifications/unsubscribe/AKJPKM6V2GGbYFL9_CktgwUkqmNCStiCks5qJsUEgaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224602534

, or mute the thread <

https://github.com/notifications/unsubscribe/ASQjUHY9zveJOilsVouUWyh8uIJuunzPks5qJs5sgaJpZM4IkDeW

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224609898

, or mute the thread <

https://github.com/notifications/unsubscribe/AKJPKLatI19o2v_FhxjRmTwHRb3SjefSks5qJtO8gaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224611468

, or mute the thread <

https://github.com/notifications/unsubscribe/ASQjUIm5UfzW_mnsi4pRAju5zIBMZwSIks5qJtTYgaJpZM4IkDeW

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224622341

, or mute the thread <

https://github.com/notifications/unsubscribe/AKJPKKZgt-BJWTXyFl1ug9LgauWcB8kyks5qJtzQgaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224633838

, or mute the thread <

https://github.com/notifications/unsubscribe/ASQjUG5lkx5XKf4oD6GKzHFWCSp7XbMIks5qJuSngaJpZM4IkDeW

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224640013

, or mute the thread <

https://github.com/notifications/unsubscribe/AKJPKKNtPtFrkOrqMdrRQG11ZmK7TsgJks5qJuhdgaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224642914

, or mute the thread <

https://github.com/notifications/unsubscribe/ASQjUP0OWo6q4GLoHnB3QJhRbEKhcqVVks5qJupEgaJpZM4IkDeW

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224671688

, or mute the thread <

https://github.com/notifications/unsubscribe/AKJPKPeTDe-bBy-xWDErlQeykb4epnWiks5qJv-wgaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224919129

, or mute the thread <

https://github.com/notifications/unsubscribe/ASQjUHmQjaYmrb-18C-JtWI8yQQhMO4Uks5qKCgSgaJpZM4IkDeW

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224944427

, or mute the thread <

https://github.com/notifications/unsubscribe/AKJPKBHcgJtJLSxuVzkCQhMKoMvXjZENks5qKDq0gaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub <

https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224944945

, or mute the thread <

https://github.com/notifications/unsubscribe/ASQjUE3UOx2lDcsTKMWZ43sRM4VOjVmkks5qKDsmgaJpZM4IkDeW

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub < https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224954889 , or mute the thread < https://github.com/notifications/unsubscribe/AKJPKIndmBuDGIxgqMkB_aaTMQGIsWj9ks5qKEL4gaJpZM4IkDeW

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/s4sarath/word2vec_supervised/issues/1#issuecomment-224957113, or mute the thread https://github.com/notifications/unsubscribe/ASQjUJDQ-34fk-6GVvcFGCVEpIDuHQG1ks5qKES7gaJpZM4IkDeW .