I\'m trying to run LDA (Latent Dirichlet Allocation) on a non-English text dataset.
From sklearn\'s tutorial, there\'s this part where you count term frequency of th
You may just assign a frozenset of your own words to the stop_words argument, e.g.:
frozenset
stop_words = frozenset(["word1", "word2","word3"])