Upload config.json
Browse files- config.json +52 -0
config.json
ADDED
@@ -0,0 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"activation_dropout": 0.0,
|
3 |
+
"activation_function": "relu",
|
4 |
+
"architectures": [
|
5 |
+
"DetrForObjectDetection"
|
6 |
+
],
|
7 |
+
"attention_dropout": 0.0,
|
8 |
+
"auxiliary_loss": false,
|
9 |
+
"backbone": "resnet18",
|
10 |
+
"bbox_cost": 5,
|
11 |
+
"bbox_loss_coefficient": 5,
|
12 |
+
"ce_loss_coefficient": 1,
|
13 |
+
"class_cost": 1,
|
14 |
+
"d_model": 256,
|
15 |
+
"decoder_attention_heads": 8,
|
16 |
+
"decoder_ffn_dim": 2048,
|
17 |
+
"decoder_layerdrop": 0.0,
|
18 |
+
"decoder_layers": 6,
|
19 |
+
"dice_loss_coefficient": 1,
|
20 |
+
"dilation": false,
|
21 |
+
"dropout": 0.1,
|
22 |
+
"encoder_attention_heads": 8,
|
23 |
+
"encoder_ffn_dim": 2048,
|
24 |
+
"encoder_layerdrop": 0.0,
|
25 |
+
"encoder_layers": 6,
|
26 |
+
"eos_coefficient": 0.4,
|
27 |
+
"giou_cost": 2,
|
28 |
+
"giou_loss_coefficient": 2,
|
29 |
+
"id2label": {
|
30 |
+
"0": "table",
|
31 |
+
"1": "table rotated"
|
32 |
+
},
|
33 |
+
"init_std": 0.02,
|
34 |
+
"init_xavier_std": 1.0,
|
35 |
+
"is_encoder_decoder": true,
|
36 |
+
"label2id": {
|
37 |
+
"table": 0,
|
38 |
+
"table rotated": 1
|
39 |
+
},
|
40 |
+
"mask_loss_coefficient": 1,
|
41 |
+
"max_position_embeddings": 1024,
|
42 |
+
"model_type": "detr",
|
43 |
+
"normalize_before": true,
|
44 |
+
"num_channels": 3,
|
45 |
+
"num_hidden_layers": 6,
|
46 |
+
"num_queries": 15,
|
47 |
+
"position_embedding_type": "sine",
|
48 |
+
"scale_embedding": false,
|
49 |
+
"torch_dtype": "float32",
|
50 |
+
"transformers_version": "4.22.0.dev0",
|
51 |
+
"use_pretrained_backbone": true
|
52 |
+
}
|