Created
February 19, 2015 11:32
-
-
Save dav009/10a742de43246210f3ba to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import gensim | |
import codecs | |
from gensim.models import Word2Vec | |
import json | |
def export_to_file(path_to_model, output_file): | |
output = codecs.open(output_file, 'w' , 'utf-8') | |
model = Word2Vec.load_word2vec_format(path_to_model, binary=True) | |
vocab = model.vocab | |
for mid in vocab: | |
#print(model[mid]) | |
print(mid) | |
vector = list() | |
for dimension in model[mid]: | |
vector.append(str(dimension)) | |
#line = { "mid": mid, "vector": vector } | |
vector_str = ",".join(vector) | |
line = mid + "\t" + vector_str | |
#line = json.dumps(line) | |
output.write(line + "\n") | |
output.close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Note, gensim.models.Word2Vec.load_word2vec_format has been deprecated. Switching "Word2Vec" to be "KeyedVectors" works.
(I got here from https://github.com/sriniiyer/nl2sql which references this code).