LeetTopic icon indicating copy to clipboard operation
LeetTopic copied to clipboard

Results 5 LeetTopic issues
Sort by recently updated
recently updated
newest added

Probably stop words could be in other langs to https://github.com/wjbmattingly/LeetTopic/blob/0ab7cc5852bfed3cb6b095a951723e1624632c39/leet_topic/leet_topic.py#L90

Running the python code brought this error: ``` File "/opt/homebrew/lib/python3.11/site-packages/leet_topic/leet_topic.py", line 6, in from annoy import AnnoyIndex ModuleNotFoundError: No module named 'annoy' ``` Then manually pip install "annoy" solved the...

Installing leet-topic in a clean environment installs scikit-learn version 1.2.2, where the method `get_feature_names` is deprecated in favor of `get_feature_names_out` as shown in [scikit-learn version 1.1.3 documentation] (https://scikit-learn.org/1.1/modules/generated/sklearn.feature_extraction.text.TfidfVectorizer.html?highlight=tfidfvectorizer#sklearn.feature_extraction.text.TfidfVectorizer). Therefore, running...

does not open html output while working in kaggle notebook.

1. The LeetTopic class can take a parameter "embeddings" that can be used if you want to use a pre-computed embedding. If no embedding is passed as a parameter, the...