About 2,080,000 results
Open links in new tab
  1. 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 representation through word2vec. I'm assuming the process would be to first train word2vec...

  2. How to use word2vec to calculate the similarity distance by giving 2 ...

    Word2vec is a open source tool to calculate the words distance provided by Google. It can be used by inputting a word and output the ranked word lists according to the similarity.

  3. pip - python word2vec not installing - Stack Overflow

    Re-install gensim on Anaconda using the command "conda install gensim" Then you can open the ipython-notebook and try running python code using word2vec, it should work.

  4. SpaCy: how to load Google news word2vec vectors?

    SpaCy: how to load Google news word2vec vectors? Asked 8 years, 10 months ago Modified 6 years, 6 months ago Viewed 21k times

  5. Load Pretrained glove vectors in python - Stack Overflow

    Suppose you generated GloVe vectors using the C++ program and that your "-save-file" parameter is "vectors". Glove executable will generate you two files, "vectors.bin" and "vectors.txt". Use …

  6. python - Get most similar words, given the vector of the word (not the ...

    model = gensim.models.Word2Vec.load_word2vec_format(model_file, binary=True) model.most_similar(positive=[WORD], topn=N) I wonder if there is a possibility to give the system as …

  7. python - Save gensim Word2vec model in binary format .bin with save ...

    I'm training my own word2vec model using different data. To implement the resulting model into my classifier and compare the results with the original pre-trained Word2vec model I need to save the …

  8. What is the concept of negative-sampling in word2vec?

    The idea of word2vec is to maximise the similarity (dot product) between the vectors for words which appear close together (in the context of each other) in text, and minimise the similarity of words that …

  9. Word2Vec: Effect of window size used - Stack Overflow

    However the word2vec site claims its possible to obtain an accuracy of ~60% on these tasks. Hence I would like to gain some insights into the effect of these hyperparameters like window size and how …

  10. How to load sentences into Python gensim? - Stack Overflow

    I am trying to use the word2vec module from gensim natural language processing library in Python. The docs say to initialize the model: from gensim.models import word2vec model = Word2Vec(sentenc...