TextBlob
TextBlob copied to clipboard
Simple, Pythonic, text processing--Sentiment analysis, part-of-speech tagging, noun phrase extraction, translation, and more.
I'm not able to add custom words such as names into the frequency list for spelling correction. I've using this library as a post-processing step for an ocr tool
Could it be a much better way to analyze the text, with better Performance? A few days ago I suggested to a library called 'spaCy' to implement this functionality, however,...
Like NaiveBayesClassifier can be used to train sentences to classify as positive and negative, can we use PatternAnalyzer for training the sentences.
fixes for the non lower word to be matched in the dictionary corpus. It fixes the following issue incorrect correction for capitalized "Four" and "We" #298
Deprecation warnings are raised due to invalid escape sequences in Python 3.8 . Below is a log of the warnings raised during compiling all the python files. Using raw strings...
`'0.15.3'` ```python from textblob import TextBlob text = 'Four years ago, we started four projects. We like them.' blob = TextBlob(text) blob.correct() ``` ``` TextBlob("Your years ago, we started four...
I tried to train the NaiveBayesClassifier on a set of ~39000 training examples, each is a string with its label. eg of a string: "The room was kind of clean...
Hello! Does this library support or has any plan to support [UNICODE emojis](https://en.wikipedia.org/wiki/Emoticons_(Unicode_block)) in text?
Hi Steve, Thanks a lot for the wonderful package. I would like to inform that I have been working with Textblob package for sentiment analysis of text. Could you please...