About 50 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. SpaCy: how to load Google news word2vec vectors?

    SpaCy: how to load Google news word2vec vectors? Ask Question Asked 9 years, 2 months ago Modified 6 years, 11 months ago

  3. 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.

  4. How to load a pre-trained Word2vec MODEL File and reuse it?

    Nov 29, 2017 · How to load a pre-trained Word2vec MODEL File and reuse it? Asked 9 years, 7 months ago Modified 2 years, 4 months ago Viewed 50k times

  5. How to get the dimensions of a word2vec vector? - Stack Overflow

    Apr 8, 2022 · The vector dimensionality is included as an argument in Word2Vec: In gensim versions up to 3.8.3, the argument was called size (docs) In the latest gensim versions (4.0 onwards), the …

  6. What's the major difference between glove and word2vec?

    May 10, 2019 · What is the difference between word2vec and glove? Are both the ways to train a word embedding? if yes then how can we use both?

  7. What is the ideal "size" of the vector for each word in Word2Vec?

    Jun 21, 2022 · I am doing json.dump() for finalvecs. How can I determine the right size (dimension) of the vector for each token based on the given problem? I use skip-gram model to train Word2Vec. …

  8. python - Text similarity using Word2Vec - Stack Overflow

    The awesome thing about word2vec and such models is that you don't need to train them on your data for most cases. You can use pre-trained word embedding that has been trained on a ton of data and …

  9. Using a Word2Vec model pre-trained on wikipedia - Stack Overflow

    Jul 25, 2017 · I need to use gensim to get vector representations of words, and I figure the best thing to use would be a word2vec module that's pre-trained on the english wikipedia corpus. Does anyone …

  10. tensorflow - word2vec - get nearest words - Stack Overflow

    This approach apply to word2vec in general. If you can save the word2vec in text/binary file like google/ GloVe word vector. Then what you need is just the gensim. To install: Via github Python code: from …