Hi all,
just to keep you informed about the progress made.
I uploaded as model the second freebase file present in
https://code.google.com/p/word2vec/ so...the file indicated as "using the deprecated /en/ naming (more easily readable)"
in this case it works fine, even if, it's not such a nice thing to use "/en/word_to_look_for":
>>> model_f2 = Word2Vec.load_word2vec_format(
... '/home/marco/CNN_Tut/freebase-vectors-skipgram1000-en-2.bin.gz', binary=True)
2014-10-18 13:12:34,791 : INFO : loading projection weights from /home/marco/CNN_Tut/freebase-vectors-skipgram1000-en-2.bin.gz
2014-10-18 13:13:41,177 : INFO : loaded (1422903, 1000) matrix from /home/marco/CNN_Tut/freebase-vectors-skipgram1000-en-2.bin.gz
2014-10-18 13:13:41,177 : INFO : precomputing L2-norms of word weight vectors
>>> model_f2["/en/water"]
array([ 1.23640141e-02, -1.21191824e-02, 6.56149685e-02,
4.86603519e-03, -4.65180725e-02, 1.60670979e-03,
-1.24252215e-02, 2.20348756e-03, 9.18119866e-03,
But the problem persists with the first downloadable freebase file.
Any hints to solve it?
Kind regards.
Marco