---------------------------------------------------------------------------
KeyboardInterrupt Traceback (most recent call last)
<ipython-input-2-c8ca7cf3df27> in <module>()
2 # https://drive.google.com/file/d/0B7XkCwpI5KDYNlNUTTlSS21pQmM/ (Google news, 3M words, vector_size=300)
3
----> 4 model = Word2Vec.load_word2vec_format(path, binary=True)
/Users/andreas/anaconda/lib/python2.7/site-packages/gensim/models/word2vec.pyc in load_word2vec_format(cls, fname, fvocab, binary, encoding, unicode_errors, limit, datatype)
1209 word.append(ch)
1210 word = utils.to_unicode(b''.join(word), encoding=encoding, errors=unicode_errors)
-> 1211 weights = fromstring(fin.read(binary_len), dtype=REAL)
1212 add_word(word, weights)
1213 else:
KeyboardInterrupt: