AnnyNguyen commited on
Commit
d9c2206
·
verified ·
1 Parent(s): cb76ce7

Upload config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. config.json +23 -0
config.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "auto_map": {
3
+ "AutoModelForSequenceClassification": "models.TextCNNModel"
4
+ },
5
+ "architectures": [
6
+ "TextCNNModel"
7
+ ],
8
+ "model_type": "bert",
9
+ "custom_model_type": "custom",
10
+ "num_labels": 3,
11
+ "id2label": {
12
+ "0": "CLEAN",
13
+ "1": "OFFENSIVE",
14
+ "2": "HATE"
15
+ },
16
+ "label2id": {
17
+ "CLEAN": 0,
18
+ "OFFENSIVE": 1,
19
+ "HATE": 2
20
+ },
21
+ "torch_dtype": "float32",
22
+ "transformers_version": "4.30.0"
23
+ }