ahmedrachid
commited on
Commit
•
d833cdf
1
Parent(s):
feab972
Update README.md
Browse files
README.md
CHANGED
@@ -31,4 +31,8 @@ Our model can be used thanks to Transformers pipeline for sentiment analysis.
|
|
31 |
]
|
32 |
>>> results = nlp(sentences)
|
33 |
>>> print(results)
|
|
|
|
|
|
|
|
|
34 |
```
|
|
|
31 |
]
|
32 |
>>> results = nlp(sentences)
|
33 |
>>> print(results)
|
34 |
+
|
35 |
+
[{'label': 'positive', 'score': 0.9998133778572083},
|
36 |
+
{'label': 'neutral', 'score': 0.9997822642326355},
|
37 |
+
{'label': 'negative', 'score': 0.9877365231513977}]
|
38 |
```
|