Update README.md
Browse files
README.md
CHANGED
@@ -13,11 +13,12 @@ widget:
|
|
13 |
This model is a fine-tune checkpoint of [Yanzhu/bertweetfr-base](https://huggingface.co/Yanzhu/bertweetfr-base), fine-tuned on SST-2.
|
14 |
This model reaches an accuracy of 71% on the dev set.
|
15 |
In this dataset, given a tweet, the goal was to infer the underlying topic of the tweet by choosing from four topics classes:
|
16 |
-
-
|
17 |
-
-
|
18 |
-
-
|
19 |
-
|
20 |
-
|
|
|
21 |
|
22 |
```python
|
23 |
from transformers import AutoTokenizer, AutoModelForSequenceClassification, pipeline
|
|
|
13 |
This model is a fine-tune checkpoint of [Yanzhu/bertweetfr-base](https://huggingface.co/Yanzhu/bertweetfr-base), fine-tuned on SST-2.
|
14 |
This model reaches an accuracy of 71% on the dev set.
|
15 |
In this dataset, given a tweet, the goal was to infer the underlying topic of the tweet by choosing from four topics classes:
|
16 |
+
- 0 : negatif
|
17 |
+
- 1 : neutre
|
18 |
+
- 2 : positif
|
19 |
+
|
20 |
+
|
21 |
+
# Pipelining the Model
|
22 |
|
23 |
```python
|
24 |
from transformers import AutoTokenizer, AutoModelForSequenceClassification, pipeline
|