Update config.json
Browse files- config.json +10 -9
config.json
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
{
|
2 |
-
"_name_or_path": "google/vit-large-patch16-224
|
3 |
"architectures": [
|
4 |
"ViTForImageClassification"
|
5 |
],
|
@@ -7,24 +7,25 @@
|
|
7 |
"encoder_stride": 16,
|
8 |
"hidden_act": "gelu",
|
9 |
"hidden_dropout_prob": 0.0,
|
10 |
-
"hidden_size":
|
11 |
"id2label": {"1": "upper_body_cloth",
|
12 |
"2": "lower_body_cloth",
|
13 |
"3": "full_body_cloth"},
|
14 |
"image_size": 224,
|
15 |
"initializer_range": 0.02,
|
16 |
-
"intermediate_size":
|
17 |
-
"label2id": {"upper_body_cloth":
|
18 |
-
"lower_body_cloth":
|
19 |
-
"full_body_cloth":
|
20 |
"layer_norm_eps": 1e-12,
|
21 |
"model_type": "vit",
|
22 |
-
"num_attention_heads":
|
23 |
"num_channels": 3,
|
24 |
-
"num_hidden_layers":
|
25 |
"patch_size": 16,
|
26 |
"problem_type": "single_label_classification",
|
27 |
"qkv_bias": true,
|
28 |
"torch_dtype": "float32",
|
29 |
-
"transformers_version": "4.
|
30 |
}
|
|
|
|
1 |
{
|
2 |
+
"_name_or_path": "google/vit-large-patch16-224",
|
3 |
"architectures": [
|
4 |
"ViTForImageClassification"
|
5 |
],
|
|
|
7 |
"encoder_stride": 16,
|
8 |
"hidden_act": "gelu",
|
9 |
"hidden_dropout_prob": 0.0,
|
10 |
+
"hidden_size": 1024,
|
11 |
"id2label": {"1": "upper_body_cloth",
|
12 |
"2": "lower_body_cloth",
|
13 |
"3": "full_body_cloth"},
|
14 |
"image_size": 224,
|
15 |
"initializer_range": 0.02,
|
16 |
+
"intermediate_size": 4096,
|
17 |
+
"label2id": {"upper_body_cloth": 1,
|
18 |
+
"lower_body_cloth": 2,
|
19 |
+
"full_body_cloth": 3},
|
20 |
"layer_norm_eps": 1e-12,
|
21 |
"model_type": "vit",
|
22 |
+
"num_attention_heads": 16,
|
23 |
"num_channels": 3,
|
24 |
+
"num_hidden_layers": 24,
|
25 |
"patch_size": 16,
|
26 |
"problem_type": "single_label_classification",
|
27 |
"qkv_bias": true,
|
28 |
"torch_dtype": "float32",
|
29 |
+
"transformers_version": "4.26.1"
|
30 |
}
|
31 |
+
|