AnFreTh / STREAM

A versatile Python package engineered for seamless topic modeling, topic evaluation, and topic visualization. Ideal for text analysis, natural language processing (NLP), and research in the social sciences, STREAM simplifies the extraction, interpretation, and visualization of topics from large, complex datasets.
https://stream-topic.readthedocs.io
MIT License
31 stars 5 forks source link

docs: extend nltk dependencies in installation document #80

Closed mkumar73 closed 1 month ago

mkumar73 commented 1 month ago

Need the following data from nltk to run the models:

import nltk

nltk.download('punkt')
nltk.download('wordnet')
nltk.download('stopwords')
nltk.download('averaged_perceptron_tagger')
mkumar73 commented 1 month ago

fixed with PR #81