orha commited on
Commit
f95b238
·
verified ·
1 Parent(s): 2fa38d3

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +25 -0
config.json ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "ViTForImageClassification"
4
+ ],
5
+ "hidden_size": 768,
6
+ "num_attention_heads": 12,
7
+ "num_hidden_layers": 12,
8
+ "num_labels": 10,
9
+ "intermediate_size": 3072,
10
+ "hidden_act": "gelu",
11
+ "initializer_range": 0.02,
12
+ "layer_norm_eps": 1e-12,
13
+ "image_size": 224,
14
+ "patch_size": 16,
15
+ "id2label": {
16
+ "0": "class0",
17
+ "1": "class1",
18
+ "2": "class2"
19
+ },
20
+ "label2id": {
21
+ "class0": 0,
22
+ "class1": 1,
23
+ "class2": 2
24
+ }
25
+ }