Top "Gensim" questions

Gensim is a free Python framework designed to automatically extract semantic topics from documents, as efficiently (computer-wise) and painlessly (human-wise) as possible.

Using pretrained gensim Word2vec embedding in keras

I have trained word2vec in gensim. In Keras, I want to use it to make matrix of sentence using …

python keras gensim word2vec word-embedding
Gensim Dictionary Implementation

I was just curious about the gensim dictionary implementation. I have the following code: def build_dictionary(documents): dictionary = corpora.…

python nlp topic-modeling gensim
How to abstract bigram topics instead of unigrams using Latent Dirichlet Allocation (LDA) in python- gensim?

LDA Original Output Uni-grams topic1 -scuba,water,vapor,diving topic2 -dioxide,plants,green,carbon Required Output Bi-gram topics topic1 -scuba …

nlp text-mining lda gensim
Gensim train word2vec on wikipedia - preprocessing and parameters

I am trying to train the word2vec model from gensim using the Italian wikipedia "http://dumps.wikimedia.org/itwiki/…

nlp gensim word2vec
Interpreting the sum of TF-IDF scores of words across documents

First let's extract the TF-IDF scores per term per document: from gensim import corpora, models, similarities documents = ["Human machine interface …

python statistics nlp tf-idf gensim
Getting TF-IDF Scores Of Words Using Gensim

I am trying to find the most important words in a corpus based on their TF-IDF scores. Been following along …

python tf-idf gensim
Does gensim.corpora.Dictionary have term frequency saved?

Does gensim.corpora.Dictionary have term frequency saved? From gensim.corpora.Dictionary, it's possible to get the document frequency of …

python dictionary frequency gensim tf-idf
What meaning does the length of a Word2vec vector have?

I am using Word2vec through gensim with Google's pretrained vectors trained on Google News. I have noticed that the …

python nlp gensim word2vec
Using scikit-learn vectorizers and vocabularies with gensim

I am trying to recycle scikit-learn vectorizer objects with gensim topic models. The reasons are simple: first of all, I …

python scikit-learn topic-modeling gensim
How does the Gensim Fasttext pre-trained model get vectors for out-of-vocabulary words?

I am using gensim to load pre-trained fasttext model. I downloaded the English wikipedia trained model from fasttext website. here …

python nlp gensim fasttext