About 3,950,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?

    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 …

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

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

  5. svn - How to download word2vec? - Stack Overflow

    Oct 15, 2016 · How to download word2vec? Asked 9 years ago Modified 8 years, 6 months ago Viewed 32k times

  6. What are the differences between contextual embedding and …

    Jun 8, 2020 · Both embedding techniques, traditional word embedding (e.g. word2vec, Glove) and contextual embedding (e.g. ELMo, BERT), aim to learn a continuous (vector) representation …

  7. python - Text similarity using Word2Vec - Stack Overflow

    Word2vec and Glove are a sufficiently good way to create similarities between sentences as well. It's basic linear algebra and it lets you create a semantic representation of a sentence based …

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

  9. python - How to handle KeyError (f"Key ' {key}' not present") …

    Jun 2, 2022 · You could also consider finding or training a word2vec variant model like FastText, which can synthesize guess-vectors for unknown tokens based on which substrings they might …

  10. 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?