Upload toxicity_config.json with huggingface_hub
Browse files- toxicity_config.json +18 -0
toxicity_config.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"base_model": "cointegrated/rubert-tiny2",
|
| 3 |
+
"hidden_size": 312,
|
| 4 |
+
"dropout": 0.2,
|
| 5 |
+
"num_heads": 3,
|
| 6 |
+
"label_cols": [
|
| 7 |
+
"profanity",
|
| 8 |
+
"threat",
|
| 9 |
+
"illegal"
|
| 10 |
+
],
|
| 11 |
+
"thresholds": {
|
| 12 |
+
"profanity": 0.6,
|
| 13 |
+
"threat": 0.75,
|
| 14 |
+
"illegal": 0.16
|
| 15 |
+
},
|
| 16 |
+
"max_length": 64,
|
| 17 |
+
"architecture": "MultiTaskToxicityEncoder"
|
| 18 |
+
}
|