Skip to content

Commit

Permalink
Corrected a typo (microsoft#335)
Browse files Browse the repository at this point in the history
On line 106, "us" was used instead of "use"
  • Loading branch information
Authentic10 authored Sep 7, 2021
1 parent 155de35 commit afcf365
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 6-NLP/3-Translation-Sentiment/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ Sentiment is measured in with a *polarity* of -1 to 1, meaning -1 is the most ne

Take another look at Jane Austen's *Pride and Prejudice*. The text is available here at [Project Gutenberg](https://www.gutenberg.org/files/1342/1342-h/1342-h.htm). The sample below shows a short program which analyses the sentiment of first and last sentences from the book and display its sentiment polarity and subjectivity/objectivity score.

You should us the `TextBlob` library (described above) to determine `sentiment` (you do not have to write your own sentiment calculator) in the following task.
You should use the `TextBlob` library (described above) to determine `sentiment` (you do not have to write your own sentiment calculator) in the following task.

```python
from textblob import TextBlob
Expand Down

0 comments on commit afcf365

Please sign in to comment.