About 4,480,000 results
Open links in new tab
  1. How to use word2vec to calculate the similarity distance by giving …

    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.

  2. How to fetch vectors for a word list with Word2Vec?

    Jul 15, 2015 · 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 …

  3. How to get vector for a sentence from the word2vec of tokens in ...

    Apr 21, 2015 · It is possible, but not from word2vec. The composition of word vectors in order to obtain higher-level representations for sentences (and further for paragraphs and documents) …

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

    Nov 29, 2017 · just for loading import gensim # Load pre-trained Word2Vec model. model = gensim.models.Word2Vec.load("modelName.model") now you can train the model as usual. …

  5. Understanding gensim word2vec's most_similar - Stack Overflow

    Feb 7, 2019 · The method corresponds to the word-analogy and distance scripts in the original word2vec implementation. I assume, then, that most_similar takes the positive examples and …

  6. Does Gensim library support GPU acceleration? - Stack Overflow

    Sep 18, 2016 · Using Word2vec and Doc2vec methods provided by Gensim, they have a distributed version which uses BLAS, ATLAS, etc to speedup (details here). However, is it …

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

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

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

  9. gensim word2vec: Find number of words in vocabulary

    Feb 24, 2016 · After training a word2vec model using python gensim, how do you find the number of words in the model's vocabulary?

  10. Word2Vec from scratch with Python - Stack Overflow

    Aug 3, 2023 · I'm studying about Word2Vec and trying to build from scratch with Python. I found some good explanation about word2vec model and its implementation. word2vec-from-scratch …