Update config.json
Browse files- config.json +36 -1
config.json
CHANGED
@@ -1 +1,36 @@
|
|
1 |
-
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architectures": [
|
3 |
+
"YolosForObjectDetection"
|
4 |
+
],
|
5 |
+
"model_type": "yolos",
|
6 |
+
"attention_probs_dropout_prob": 0.1,
|
7 |
+
"hidden_dropout_prob": 0.1,
|
8 |
+
"hidden_size": 384,
|
9 |
+
"image_size": [
|
10 |
+
640,
|
11 |
+
640
|
12 |
+
],
|
13 |
+
"initializer_range": 0.02,
|
14 |
+
"layer_norm_eps": 1e-12,
|
15 |
+
"num_attention_heads": 6,
|
16 |
+
"num_channels": 3,
|
17 |
+
"num_hidden_layers": 12,
|
18 |
+
"patch_size": 16,
|
19 |
+
"qkv_bias": true,
|
20 |
+
"encoder_stride": 16,
|
21 |
+
"num_detection_tokens": 100,
|
22 |
+
"intermediate_size": 1536,
|
23 |
+
"id2label": {
|
24 |
+
"0": "roof"
|
25 |
+
},
|
26 |
+
"label2id": {
|
27 |
+
"roof": 0
|
28 |
+
},
|
29 |
+
"use_mid_position_embeddings": true,
|
30 |
+
"use_relative_position_bias": true,
|
31 |
+
"bbox_cost": 5,
|
32 |
+
"bbox_loss_coefficient": 5,
|
33 |
+
"class_cost": 1,
|
34 |
+
"giou_cost": 2,
|
35 |
+
"giou_loss_coefficient": 2
|
36 |
+
}
|