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. Classic king - man + woman = queen example with pretrained word ...

    Dec 12, 2022 · I am really desperate, I just cannot reproduce the allegedly classic example of king - man + woman = queen with the word2vec package in R and any (!) pre-trained embedding model (as a …

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

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

    model = api.load("word2vec-google-news-300") # download the model and return as object ready for use word_vectors = model.wv #load the vectors from the model

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

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

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

  10. 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 on the …