Tensorflow Word2vec Error
I downloaded source code of word2vec in github below. https://github.com/tensorflow/models/blob/master/tutorials/embedding/word2vec.py I am using tensorflow on pycharm. I'm using w
Solution 1:
You're using windows and .so files are (almost) the equivalent of DLL files but under unix systems. So, even if you could find the .so file, that wouldn't work under windows.
If you're willing to install linux and do everything from there, in the same place where you found word2vec.py you can also find how to build the .so file.
( https://github.com/tensorflow/models/tree/master/tutorials/embedding , it says You will need to compile the ops as follows
). If you don't know how linux and g++ / gcc work, you should probably switch to another project that is windows specific.
Post a Comment for "Tensorflow Word2vec Error"