Top "Word2vec" questions

This tool provides an efficient implementation of the continuous bag-of-words and skip-gram architectures for computing vector representations of words.

Error while loading Word2Vec model in gensim

I'm getting an AttributeError while loading the gensim model available at word2vec repository: from gensim import models w = models.…

python gensim word2vec
How to speed up Gensim Word2vec model load time?

I'm building a chatbot so I need to vectorize the user's input using Word2Vec. I'm using a pre-trained model …

deep-learning gensim word2vec
Using Word2Vec for topic modeling

I have read that the most common technique for topic modeling (extracting possible topics from text) is Latent Dirichlet allocation (…

nlp topic-modeling word2vec
Python: gensim: RuntimeError: you must first build vocabulary before training the model

I know that this question has been asked already, but I was still not able to find a solution for …

python gensim word2vec
Word2Vec: Effect of window size used

I am trying to train a word2vec model on very short phrases (5 grams). Since each sentence or example is …

gensim word2vec
Error: 'utf8' codec can't decode byte 0x80 in position 0: invalid start byte

I am trying to do the following kaggle assignmnet. I am using gensim package to use word2vec. I am …

python character-encoding gensim word2vec kaggle
How to use TaggedDocument in gensim?

I have two directories from which I want to read their text files and label them, but I don't know …

python nltk gensim word2vec doc2vec
How to load a pre-trained Word2vec MODEL File and reuse it?

I want to use a pre-trained word2vec model, but I don't know how to load it in python. This …

python file model word2vec gensim
How to do Text classification using word2vec

I want to perform text classification using word2vec. I got vectors of words. ls = [] sentences = lines.split(".") for i …

python-3.x word2vec gensim text-classification
How to fetch vectors for a word list with Word2Vec?

I want to create a text file that is essentially a dictionary, with each word being paired with its vector …

machine-learning nlp artificial-intelligence word2vec