Update README.md
Browse files
README.md
CHANGED
@@ -27,6 +27,7 @@ The original Twitter-based RoBERTa model can be found [here](https://huggingface
|
|
27 |
"3": "drugs",
|
28 |
"4": "selfharm",
|
29 |
"5": "spam"
|
|
|
30 |
}
|
31 |
```
|
32 |
|
@@ -43,12 +44,13 @@ pipe(text)
|
|
43 |
Output:
|
44 |
|
45 |
```
|
46 |
-
[[{'label': 'conflictual', 'score': 0.
|
47 |
-
{'label': 'profanity', 'score': 0.
|
48 |
-
{'label': 'sex', 'score': 0.
|
49 |
-
{'label': 'drugs', 'score': 0.
|
50 |
-
{'label': 'selfharm', 'score': 0.
|
51 |
-
{'label': 'spam', 'score': 0.
|
|
|
52 |
```
|
53 |
|
54 |
|
|
|
27 |
"3": "drugs",
|
28 |
"4": "selfharm",
|
29 |
"5": "spam"
|
30 |
+
"6": "not-sensitive"
|
31 |
}
|
32 |
```
|
33 |
|
|
|
44 |
Output:
|
45 |
|
46 |
```
|
47 |
+
[[{'label': 'conflictual', 'score': 0.07463070750236511},
|
48 |
+
{'label': 'profanity', 'score': 0.9888035655021667},
|
49 |
+
{'label': 'sex', 'score': 0.0032050721347332},
|
50 |
+
{'label': 'drugs', 'score': 0.004522938746958971},
|
51 |
+
{'label': 'selfharm', 'score': 0.0036733713932335377},
|
52 |
+
{'label': 'spam', 'score': 0.007278479170054197},
|
53 |
+
{'label': 'not-sensitive', 'score': 0.00972921121865511}]]
|
54 |
```
|
55 |
|
56 |
|