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. 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. What is the concept of negative-sampling in word2vec? [closed]

    The terminology is borrowed from classification, a common application of neural networks. There you have a bunch of positive and negative examples. With word2vec, for any given word you have a list …

  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. also, if …

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

  6. python - Text similarity using Word2Vec - Stack Overflow

    You can use a pre-trained word embedding model (word2vec, glove or fasttext) to get word embeddings. These can be added (vector additions) to represent sentences. The similarity between these vectors …

  7. What are the differences between contextual embedding and word ...

    Jun 8, 2020 · Word embeddings and contextual embeddings are slightly different. While both word embeddings and contextual embeddings are obtained from the models using unsupervised learning, …

  8. How to get word2vec from google's pre-trained model

    Aug 8, 2021 · How to get word2vec from google's pre-trained model Asked 4 years, 6 months ago Modified 4 years, 6 months ago Viewed 3k times

  9. How to calculate the sentence similarity using word2vec model of …

    0.73723527 However, the word2vec model fails to predict the sentence similarity. I find out the LSI model with sentence similarity in gensim, but, which doesn't seem that can be combined with …

  10. How to do Text classification using word2vec - Stack Overflow

    Apr 4, 2018 · I want to perform text classification using word2vec. I got vectors of words.