Python-Text-Analysis-Fundamentals
Python-Text-Analysis-Fundamentals copied to clipboard
D-Lab's 9 hour introduction to text analysis with Python. Learn how to perform bag-of-words, sentiment analysis, topic modeling, word embeddings, and more, using scikit-learn, NLTK, gensim, and spaCy...
Results
21
Python-Text-Analysis-Fundamentals issues
Sort by
recently updated
recently updated
newest added
I think it would be good to upgrade the sentence segmentation to use spacy: https://spacy.io/usage/linguistic-features#sbd ```python nlp = spacy.load("en_core_web_sm") doc = nlp(u"This is a sentence. This is another sentence.") for...