textblob Questions
3
Solved
I'm using TextBlob for python to do some sentiment analysis on tweets. The default analyzer in TextBlob is the PatternAnalyzer which works resonably well and is appreciably fast.
sent = TextBlob(t...
Cirrhosis asked 20/10, 2015 at 16:23
5
Solved
I want to analyze sentiment of texts that are written in German. I found a lot of tutorials on how to do this with English, but I found none on how to apply it to different languages.
I have an id...
Fulbert asked 20/3, 2015 at 15:7
0
I'm trying to translate a text with the TextBlob library, but the following HTTPError error is appearing: HTTP Error 400: Bad request, can someone help me with this?
Observation:
I'm using VSCode t...
Camelback asked 26/10, 2021 at 19:2
1
Solved
I am experiencing some problems using the TextBlob library. I'm trying to run a very simple piece of code like this:
from textblob import TextBlob
text = 'this is just a test'
blob = TextBlob(text)...
4
Solved
I am using python to clean a given sentence. Suppose that my sentence is:
What's the best way to ensure this?
I want to convert:
What's -> What is
Similarly,
must've -> must have
Al...
5
Solved
I'm trying to do some text classification using Textblob. I'm first training the model and serializing it using pickle as shown below.
import pickle
from textblob.classifiers import NaiveBayesCla...
2
I'm using NLTK and TextBlob to find nouns and noun phrases in a text:
from textblob import TextBlob
import nltk
blob = TextBlob(text)
print(blob.noun_phrases)
tokenized = nltk.word_tokenize(text...
2
I am having a dataframe of which one column has a list of strings at each row.
On average, each list has 150 words of about 6 characters each.
Each of the 700 rows of the dataframe is about a doc...
Zaria asked 17/5, 2019 at 15:0
2
Solved
Does anyone know how textblob sentiment is working? I know it is working based on Pattern but I could not find any article or document explain how pattern assigns polarity value to a sentence.
Shala asked 28/4, 2017 at 20:38
3
I have been using TextBlob, a package for Python (https://pypi.python.org/pypi/textblob) for translating articles to different language .
After reading their docs, I got to know that TextBlob mak...
Explicit asked 21/3, 2014 at 10:2
1
I would like to correct the misspelled words of a text in french, it seems that spacy is the most accurate and faster package to do it, but it's to complex,
I tried with textblob, but I didn't mana...
1
I installed textblob using the command pip install. But now I am trying to import it and I get the following error:
ModuleNotFoundError: No module named 'textblob'
I am using Spyder in a windo...
2
how does TextBlob calculate an empirical value for the sentiment polarity. I have used naive bayes but it just predicts whether it is positive or negative. How could I calculate a value for the sen...
Superego asked 6/7, 2018 at 11:32
3
Solved
The built-in classifier in textblob is pretty dumb. It's trained on movie reviews, so I created a huge set of examples in my context (57,000 stories, categorized as positive or negative) and then t...
Hypothesize asked 13/6, 2018 at 2:25
2
Solved
Using the TextBlob library it is possible to improve the spelling of strings by defining them as TextBlob objects first and then using the correct method.
Example:
from textblob import TextBlob
...
1
Solved
i have a data frame with a col which has text. I want to apply textblob and calculate sentiment value for each row.
text sentiment
this is great
great movie
great story
When i execute the bel...
1
Solved
i have searched the web about normalizing tf grades on cases when the documents' lengths are very different
(for example, having the documents lengths vary from 500 words to 2500 words)
the only n...
Maharani asked 26/9, 2016 at 13:28
2
Solved
I'm using pickle for saving on disk my NLP classifier built with the TextBlob library.
I'm using pickle after a lot of searches related to this question. At the moment I'm working locally and I ha...
Rexanna asked 27/11, 2015 at 21:31
1
Solved
I'm trying do build a text classification model with python and textblob, the script is runing on my server and in the future the idea is that users will be able to submit their text and it will be...
Darees asked 24/11, 2015 at 1:35
1
I installed textblob using pip as given here.
Now, when I try to import this in python3.4 in terminal then it says
ImportError: No module named 'textblob'
Whereas, in python2.7 it imports happ...
Artery asked 13/2, 2015 at 22:0
3
Solved
I am training the NaiveBayesClassifier in Python using sentences, and it gives me the error below. I do not understand what the error might be, and any help would be good.
I have tried many other...
Cowfish asked 29/12, 2013 at 17:0
1
© 2022 - 2024 — McMap. All rights reserved.