You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to work on a use-case which requires predicting the polarity but the result is not accurate. Our main focus is on the -ve inputs but it is unable to find it with confidence.
I tried to go through the github code base and understand how exactly the sentiment is predicted by the algo but was unable to get a clear picture.
So I have 3 questions:
Can we modify and retrain the the algorithm by passing more training data? If YES, then how can we do that?
Textblob sentiment analysis using Naive Bayes but what I want to understand is what steps are happening after passing the data to tb = TextBlob(data) and then calling tb.sentiment on it.
I would really appreciate if I can have a detailed steps including preprocessing, etc.
I am performing the following preprocessing steps before passing the data to TextBlob:
stop word removal and converting -ve words like don't to just not as do is a stop word, etc
Can you suggest if removing/ adding any of the above steps will lead to grater confidence & accuracy in polarity prediction?
The text was updated successfully, but these errors were encountered:
Deepankar-98
changed the title
Modify the sentiment prediction algorithm for my particular use-case
Modify TextBlob sentiment prediction algorithm
Aug 23, 2022
I am trying to work on a use-case which requires predicting the polarity but the result is not accurate. Our main focus is on the -ve inputs but it is unable to find it with confidence.
I tried to go through the github code base and understand how exactly the sentiment is predicted by the algo but was unable to get a clear picture.
So I have 3 questions:
Can we modify and retrain the the algorithm by passing more training data? If YES, then how can we do that?
Textblob sentiment analysis using Naive Bayes but what I want to understand is what steps are happening after passing the data to
tb = TextBlob(data)
and then callingtb.sentiment
on it.I would really appreciate if I can have a detailed steps including preprocessing, etc.
I am performing the following preprocessing steps before passing the data to TextBlob:
don't
to justnot
asdo
is a stop word, etcCan you suggest if removing/ adding any of the above steps will lead to grater confidence & accuracy in polarity prediction?
The text was updated successfully, but these errors were encountered: