File size: 539 Bytes
b915bae
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
  "model_type": "BaseCNN",
  "model_config": {
    "layers": [
      32,
      64,
      128,
      256
    ],
    "kernel": 3,
    "padding": 1,
    "stride": 1,
    "batchnorm": true,
    "bn_pre_activ": true,
    "activation": "ReLU",
    "dropout": 0.4,
    "pool": true,
    "fc_layers": [
      256,
      128
    ],
    "nr_classes": 3,
    "in_channels": 3
  },
  "num_labels": 3,
  "id2label": {
    "0": "Type 1",
    "1": "Type 2",
    "2": "Type 3"
  },
  "label2id": {
    "Type 1": 0,
    "Type 2": 1,
    "Type 3": 2
  }
}