iMahdiGhazavi commited on
Commit
66ba833
·
verified ·
1 Parent(s): d1e0b28

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +10 -3
config.json CHANGED
@@ -8,7 +8,15 @@
8
  "dim": 768,
9
  "dropout": 0.1,
10
  "hidden_dim": 3072,
 
 
 
 
11
  "initializer_range": 0.02,
 
 
 
 
12
  "max_position_embeddings": 512,
13
  "model_type": "distilbert",
14
  "n_heads": 12,
@@ -22,6 +30,5 @@
22
  "tie_weights_": true,
23
  "torch_dtype": "float32",
24
  "transformers_version": "4.38.1",
25
- "vocab_size": 28996,
26
-
27
- }
 
8
  "dim": 768,
9
  "dropout": 0.1,
10
  "hidden_dim": 3072,
11
+ "id2label": {
12
+ "0": "NEGATIVE",
13
+ "1": "POSITIVE"
14
+ },
15
  "initializer_range": 0.02,
16
+ "label2id": {
17
+ "NEGATIVE": 0,
18
+ "POSITIVE": 1
19
+ },
20
  "max_position_embeddings": 512,
21
  "model_type": "distilbert",
22
  "n_heads": 12,
 
30
  "tie_weights_": true,
31
  "torch_dtype": "float32",
32
  "transformers_version": "4.38.1",
33
+ "vocab_size": 28996
34
+ }