Top "Textblob" questions

Simple, Pythonic, text processing--Sentiment analysis, part-of-speech tagging, noun phrase extraction, translation, and more

Python pickle error: UnicodeDecodeError

I'm trying to do some text classification using Textblob. I'm first training the model and serializing it using pickle as …

python pickle textblob
nltk NaiveBayesClassifier training for sentiment analysis

I am training the NaiveBayesClassifier in Python using sentences, and it gives me the error below. I do not understand …

python nlp nltk sentiment-analysis textblob
TextBlob installation in windows

I have followed the instruction in Trouble installing TextBlob for Python for TextBlob installation in the Windows 7. It got installed …

python windows python-2.7 textblob
Textblob sentiment analysis on a csv file

I have a csv file with around 50 rows of sentences. I'm using the textblob sentiment analysis tool. To test the …

python sentiment-analysis textblob
Unable to get up and running with TextBlob

This morning I set out to install the TextBlob module found at https://textblob.readthedocs.org/en/latest/index.html …

python pip textblob
Apply textblob in for each row of a dataframe

i have a data frame with a col which has text. I want to apply textblob and calculate sentiment value …

python pandas textblob
python.cannot import name 'TextBlob'

I was trying to import TextBlob into Python. When I run the command directly inside shell, it works pretty well: …

python textblob
Replace apostrophe/short words in python

I am using python to clean a given sentence. Suppose that my sentence is: What's the best way to ensure …

python nlp textblob
How does TextBlob calculate sentiment polarity? How can I calculate a value for sentiment with machine learning classifier?

how does TextBlob calculate an empirical value for the sentiment polarity. I have used naive bayes but it just predicts …

python python-3.x machine-learning sentiment-analysis textblob
Python: NLTK and TextBlob in french

I'm using NLTK and TextBlob to find nouns and noun phrases in a text: from textblob import TextBlob import nltk …

python nltk textblob