anonymous-CAP commited on
Commit
0fca8b8
·
verified ·
1 Parent(s): 905a517

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +8 -17
config.json CHANGED
@@ -1,20 +1,11 @@
1
  {
2
- "architectures": [
3
- "CAPModel"
4
- ],
5
  "base_model_name": "roberta-base",
 
6
  "dropout": 0.1,
7
- "dtype": "float32",
8
- "id2label": {
9
- "0": "LABEL_0",
10
- "1": "LABEL_1",
11
- "2": "LABEL_2"
12
- },
13
- "label2id": {
14
- "LABEL_0": 0,
15
- "LABEL_1": 1,
16
- "LABEL_2": 2
17
- },
18
- "model_type": "cap",
19
- "transformers_version": "5.14.1"
20
- }
 
1
  {
2
+ "architectures": ["CAPModel"],
3
+ "model_type": "cap",
 
4
  "base_model_name": "roberta-base",
5
+ "num_labels": 3,
6
  "dropout": 0.1,
7
+ "auto_map": {
8
+ "AutoConfig": "modeling_cap.CAPConfig",
9
+ "AutoModel": "modeling_cap.CAPModel"
10
+ }
11
+ }