Skip to content

Commit f2aa274

Browse files
authored
Merge pull request #327 from tarunvignesh1/patch-1
fix typo
2 parents ae8f4ac + 8c6c4c9 commit f2aa274

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sentiment-analysis-network/Sentiment_Classification_Projects.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@
321321
"\n",
322322
"Ok, the ratios tell us which words are used more often in postive or negative reviews, but the specific values we've calculated are a bit difficult to work with. A very positive word like \"amazing\" has a value above 4, whereas a very negative word like \"terrible\" has a value around 0.18. Those values aren't easy to compare for a couple of reasons:\n",
323323
"\n",
324-
"* Right now, 1 is considered neutral, but the absolute value of the postive-to-negative rations of very postive words is larger than the absolute value of the ratios for the very negative words. So there is no way to directly compare two numbers and see if one word conveys the same magnitude of positive sentiment as another word conveys negative sentiment. So we should center all the values around netural so the absolute value fro neutral of the postive-to-negative ratio for a word would indicate how much sentiment (positive or negative) that word conveys.\n",
324+
"* Right now, 1 is considered neutral, but the absolute value of the positive-to-negative ratios of very positive words is larger than the absolute value of the ratios for the very negative words. So there is no way to directly compare two numbers and see if one word conveys the same magnitude of positive sentiment as another word conveys negative sentiment. So we should center all the values around netural so the absolute value fro neutral of the postive-to-negative ratio for a word would indicate how much sentiment (positive or negative) that word conveys.\n",
325325
"* When comparing absolute values it's easier to do that around zero than one. \n",
326326
"\n",
327327
"To fix these issues, we'll convert all of our ratios to new values using logarithms.\n",

0 commit comments

Comments
 (0)