Viet Sang Nguyen
Results
1
comments of
Viet Sang Nguyen
You can use gensim to load the .bin model: `from gensim.models import Word2Vec` `model = Word2Vec.load("vi.bin")` `model.wv['nhà']` Then, you will get the embedding vector of the word "nhà", in Vietnamese...