Commit
·
2a95a10
1
Parent(s):
1e0258a
modified *.json
Browse files- config.json +18 -3
- processor_config.json +20 -3
config.json
CHANGED
@@ -1,4 +1,19 @@
|
|
1 |
{
|
2 |
-
|
3 |
-
|
4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
{
|
2 |
+
"hidden_dim": 256,
|
3 |
+
"nheads": 8,
|
4 |
+
"num_encoder_layers": 6,
|
5 |
+
"num_decoder_layers": 6,
|
6 |
+
"dim_feedforward": 2048,
|
7 |
+
"dropout": 0.1,
|
8 |
+
"activation": "relu",
|
9 |
+
"num_classes": 10,
|
10 |
+
"num_queries": 100,
|
11 |
+
"aux_loss": true,
|
12 |
+
"bbox_loss_coef": 5,
|
13 |
+
"giou_loss_coef": 2,
|
14 |
+
"eos_coef": 0.1,
|
15 |
+
"set_cost_class": 0.1,
|
16 |
+
"set_cost_bbox": 5.0,
|
17 |
+
"set_cost_giou": 2.0,
|
18 |
+
"scale_loss_weight": 0.1
|
19 |
+
}
|
processor_config.json
CHANGED
@@ -1,4 +1,21 @@
|
|
1 |
{
|
2 |
-
|
3 |
-
|
4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
{
|
2 |
+
"type": "detr_image",
|
3 |
+
"max_size": 800,
|
4 |
+
"min_size": 400,
|
5 |
+
"num_channels": 3,
|
6 |
+
"mean": [0.485, 0.456, 0.406],
|
7 |
+
"std": [0.229, 0.224, 0.225],
|
8 |
+
"scale_h": 384,
|
9 |
+
"scale_w": 600,
|
10 |
+
"augmentation": {
|
11 |
+
"type": "augmentation",
|
12 |
+
"flip_prob": 0.5,
|
13 |
+
"translate": [0.1, 0.1],
|
14 |
+
"scale": [0.9, 1.1],
|
15 |
+
"rotate": [-30, 30],
|
16 |
+
"hue": 0.1,
|
17 |
+
"saturation": 0.1,
|
18 |
+
"value": 0.1
|
19 |
+
}
|
20 |
+
}
|
21 |
+
|