panyqueso commited on
Commit
6df8241
·
verified ·
1 Parent(s): c8ce913

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +10 -13
config.json CHANGED
@@ -1,18 +1,15 @@
1
  {
2
- "model_type": "vision_transformer",
3
  "config": {
4
- "image_size": 224,
5
- "patch_size": 16,
6
  "num_classes": 1000,
7
- "hidden_size": 768,
8
- "num_attention_heads": 12,
9
- "num_hidden_layers": 12,
10
- "intermediate_size": 3072,
11
- "hidden_dropout_prob": 0.1,
12
- "attention_probs_dropout_prob": 0.1,
13
- "initializer_range": 0.02,
14
- "layer_norm_eps": 1e-12,
15
- "output_attentions": false,
16
- "output_hidden_states": false
17
  }
18
  }
 
1
  {
2
+ "model_type": "resnet",
3
  "config": {
4
+ "layers": 18,
 
5
  "num_classes": 1000,
6
+ "input_size": 224,
7
+ "batch_norm": true,
8
+ "pretrained": true,
9
+ "dropout_rate": 0.5,
10
+ "optimizer": {
11
+ "type": "Adam",
12
+ "learning_rate": 0.001
13
+ }
 
 
14
  }
15
  }