c14kevincardenas commited on
Commit
1ff1db2
·
verified ·
1 Parent(s): 1fa0d0d

Upload 2 files

Browse files
Files changed (2) hide show
  1. config.json +19 -0
  2. preprocessor_config.json +19 -0
config.json ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "DeiTForImageClassificationWithTeacher"
4
+ ],
5
+ "attention_probs_dropout_prob": 0.0,
6
+ "hidden_act": "gelu",
7
+ "hidden_dropout_prob": 0.0,
8
+ "hidden_size": 192,
9
+ "image_size": 224,
10
+ "initializer_range": 0.02,
11
+ "intermediate_size": 768,
12
+ "layer_norm_eps": 1e-12,
13
+ "model_type": "deit",
14
+ "num_attention_heads": 3,
15
+ "num_channels": 3,
16
+ "num_hidden_layers": 12,
17
+ "patch_size": 16,
18
+ "transformers_version": "4.6.0.dev0"
19
+ }
preprocessor_config.json ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "crop_size": 224,
3
+ "do_center_crop": true,
4
+ "do_normalize": true,
5
+ "do_resize": true,
6
+ "feature_extractor_type": "DeiTFeatureExtractor",
7
+ "image_mean": [
8
+ 0.485,
9
+ 0.456,
10
+ 0.406
11
+ ],
12
+ "image_std": [
13
+ 0.229,
14
+ 0.224,
15
+ 0.225
16
+ ],
17
+ "resample": 3,
18
+ "size": 224
19
+ }