JiaqiLee commited on
Commit
e7a83f6
·
1 Parent(s): 838fba2

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +10 -3
config.json CHANGED
@@ -1,5 +1,5 @@
1
  {
2
- "_name_or_path": "../../../../bert-base-uncased",
3
  "architectures": [
4
  "BertForSequenceClassification"
5
  ],
@@ -19,10 +19,17 @@
19
  "pad_token_id": 0,
20
  "position_embedding_type": "absolute",
21
  "problem_type": "single_label_classification",
22
- "return_dict": false,
23
  "torch_dtype": "float32",
24
  "transformers_version": "4.13.0",
25
  "type_vocab_size": 2,
26
  "use_cache": true,
27
- "vocab_size": 30522
 
 
 
 
 
 
 
 
28
  }
 
1
  {
2
+ "_name_or_path": "JiaqiLee/bert-base-uncased",
3
  "architectures": [
4
  "BertForSequenceClassification"
5
  ],
 
19
  "pad_token_id": 0,
20
  "position_embedding_type": "absolute",
21
  "problem_type": "single_label_classification",
 
22
  "torch_dtype": "float32",
23
  "transformers_version": "4.13.0",
24
  "type_vocab_size": 2,
25
  "use_cache": true,
26
+ "vocab_size": 30522,
27
+ "id2label": {
28
+ "0": "negative",
29
+ "1": "positive",
30
+ },
31
+ "label2id": {
32
+ "negative": 0,
33
+ "positive": 1,
34
+ }
35
  }