wendys-llc commited on
Commit
cb53782
·
verified ·
1 Parent(s): 0109434

Upload config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. config.json +22 -0
config.json ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "CheckboxClassifier"
4
+ ],
5
+ "model_type": "checkbox-classifier",
6
+ "num_labels": 2,
7
+ "dropout_rate": 0.3,
8
+ "id2label": {
9
+ "0": "unchecked",
10
+ "1": "checked"
11
+ },
12
+ "label2id": {
13
+ "unchecked": 0,
14
+ "checked": 1
15
+ },
16
+ "torch_dtype": "float32",
17
+ "transformers_version": "4.36.0",
18
+ "auto_map": {
19
+ "AutoConfig": "model.CheckboxConfig",
20
+ "AutoModelForImageClassification": "model.CheckboxClassifier"
21
+ }
22
+ }