Browse Source

feat(nlp-scraper): add clarification about sentiment analysis

pull/2435/head
nprimo 10 months ago committed by Niccolò Primo
parent
commit
565e3063aa
  1. 9
      subjects/ai/nlp-scraper/README.md

9
subjects/ai/nlp-scraper/README.md

@ -69,16 +69,17 @@ that the model is trained correctly and not overfitted.
### **3. Sentiment analysis:** ### **3. Sentiment analysis:**
The goal is to detect the sentiment of the news articles. To do so, use a The goal is to detect the sentiment (positive, negative or neutral) of the news
pre-trained sentiment model. I suggest to use: `NLTK`. There are 3 reasons for articles. To do so, use a pre-trained sentiment model. I suggest to use:
which we use a pre-trained model: `NLTK`. There are 3 reasons for which we use a pre-trained model:
1. As a Data Scientist, you should learn to use a pre-trained model. There are 1. As a Data Scientist, you should learn to use a pre-trained model. There are
so many models available and trained that sometimes you don't need to train so many models available and trained that sometimes you don't need to train
one from scratch. one from scratch.
2. Labelled news data for sentiment analysis are very expensive. Companies as 2. Labelled news data for sentiment analysis are very expensive. Companies as
[SESAMm](https://www.sesamm.com/) provide this kind of services. [SESAMm](https://www.sesamm.com/) provide this kind of services.
3. You already know how to train a sentiment analysis classifier ;-)
- [Sentiment analysis](https://en.wikipedia.org/wiki/Sentiment_analysis)
### **4. Scandal detection ** ### **4. Scandal detection **

Loading…
Cancel
Save