Skip to content

Instantly share code, notes, and snippets.

@Damian89
Created October 18, 2017 20:13
Show Gist options
  • Save Damian89/b3f936ef0b42ba186fcbb6ef73309c64 to your computer and use it in GitHub Desktop.
Save Damian89/b3f936ef0b42ba186fcbb6ef73309c64 to your computer and use it in GitHub Desktop.
print()
print("TF-IDF + IncrementalPCA")
tfidf_vect = feature_extraction.text.TfidfVectorizer(stop_words=stoplist)
tfidf_vect.fit(docs)
features = tfidf_vect.get_feature_names()
tfidf = tfidf_vect.transform(docs)
tfidf_lsi = decomposition.IncrementalPCA(n_components=2)
tfidf_lsi.fit(tfidf.toarray())
print_topic_cloud(tfidf_lsi.components_,features, max_words)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment