MamaPearl commited on
Commit
8ed8ef5
·
verified ·
1 Parent(s): b93258d

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +41 -0
config.json ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "NULA",
3
+ "num_classes": 10,
4
+ "in_channels": 3,
5
+ "input_size": [3, 32, 32],
6
+ "block_channels": [64, 128, 256],
7
+ "use_residual": true,
8
+ "use_se": true,
9
+ "use_spatial_attention": false,
10
+ "norm_layer": "batchnorm",
11
+ "activation": "relu",
12
+ "classifier_hidden_dim": 256,
13
+ "init_scheme": "kaiming_normal",
14
+ "dataset": "uoft-cs/cifar10",
15
+ "mean": [0.5, 0.5, 0.5],
16
+ "std": [0.5, 0.5, 0.5],
17
+ "id2label" {
18
+ "0": "airplane",
19
+ "1": "automobile",
20
+ "2": "bird",
21
+ "3": "cat",
22
+ "4": "deer",
23
+ "5": "dog",
24
+ "6": "frog",
25
+ "7": "horse",
26
+ "8":, "ship",
27
+ "9": "truck"
28
+ }
29
+ "label2id": {
30
+ "airplane": 0,
31
+ "automobile": 1,
32
+ "bird": 2,
33
+ "cat": 3,
34
+ "deer": 4,
35
+ "dog": 5,
36
+ "frog": 6,
37
+ "horse": 7,
38
+ "ship:" 8,
39
+ "truck:" 9
40
+ }
41
+ }