About 10,200,000 results
Open links in new tab
  1. 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.

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

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

  4. python - Sentences embedding using word2vec - Stack Overflow

    Sep 7, 2020 · Word2vec & related algorithms are very data-hungry: all of their beneficial qualities arise from the tug-of-war between many varied usage examples for the same word. So if you have a toy …

  5. 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, 7 months ago Viewed 21k times

  6. 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) is a really …

  7. word2vec not working using gensim library - Stack Overflow

    Apr 12, 2024 · from gensim.models import Word2Vec from nltk.tokenize import word_tokenize import nltk nltk.download('punkt') # Sample sentences sentences = [ "This is a sample sentence.", "Word …

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

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

  9. word2vec - what is best? add, concatenate or average word vectors?

    Oct 23, 2017 · The word2vec model holds two word vectors for each word - one from each weight matrix. My question is related to why and how to combine these two vectors for individual words. I …

  10. How to convert the text into vector using word2vec embedding?

    Mar 6, 2020 · Word2Vec models can only map words to vectors, so, as @metalrt mentioned, you have to use a function over the set of word vectors to convert them to a single sentence vector.