Training in progress, epoch 1
Browse files- config.json +103 -0
- model.safetensors +3 -0
- preprocessor_config.json +50 -0
- training_args.bin +3 -0
config.json
ADDED
@@ -0,0 +1,103 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "PekingU/rtdetr_r50vd_coco_o365",
|
3 |
+
"activation_dropout": 0.0,
|
4 |
+
"activation_function": "silu",
|
5 |
+
"anchor_image_size": null,
|
6 |
+
"architectures": [
|
7 |
+
"RTDetrForObjectDetection"
|
8 |
+
],
|
9 |
+
"attention_dropout": 0.0,
|
10 |
+
"auxiliary_loss": true,
|
11 |
+
"backbone": null,
|
12 |
+
"backbone_config": {
|
13 |
+
"model_type": "rt_detr_resnet",
|
14 |
+
"out_features": [
|
15 |
+
"stage2",
|
16 |
+
"stage3",
|
17 |
+
"stage4"
|
18 |
+
],
|
19 |
+
"out_indices": [
|
20 |
+
2,
|
21 |
+
3,
|
22 |
+
4
|
23 |
+
]
|
24 |
+
},
|
25 |
+
"backbone_kwargs": null,
|
26 |
+
"batch_norm_eps": 1e-05,
|
27 |
+
"box_noise_scale": 1.0,
|
28 |
+
"d_model": 256,
|
29 |
+
"decoder_activation_function": "relu",
|
30 |
+
"decoder_attention_heads": 8,
|
31 |
+
"decoder_ffn_dim": 1024,
|
32 |
+
"decoder_in_channels": [
|
33 |
+
256,
|
34 |
+
256,
|
35 |
+
256
|
36 |
+
],
|
37 |
+
"decoder_layers": 6,
|
38 |
+
"decoder_n_points": 4,
|
39 |
+
"disable_custom_kernels": true,
|
40 |
+
"dropout": 0.0,
|
41 |
+
"encode_proj_layers": [
|
42 |
+
2
|
43 |
+
],
|
44 |
+
"encoder_activation_function": "gelu",
|
45 |
+
"encoder_attention_heads": 8,
|
46 |
+
"encoder_ffn_dim": 1024,
|
47 |
+
"encoder_hidden_dim": 256,
|
48 |
+
"encoder_in_channels": [
|
49 |
+
512,
|
50 |
+
1024,
|
51 |
+
2048
|
52 |
+
],
|
53 |
+
"encoder_layers": 1,
|
54 |
+
"eos_coefficient": 0.0001,
|
55 |
+
"eval_size": null,
|
56 |
+
"feat_strides": [
|
57 |
+
8,
|
58 |
+
16,
|
59 |
+
32
|
60 |
+
],
|
61 |
+
"focal_loss_alpha": 0.75,
|
62 |
+
"focal_loss_gamma": 2.0,
|
63 |
+
"hidden_expansion": 1.0,
|
64 |
+
"id2label": {
|
65 |
+
"0": "Coverall",
|
66 |
+
"1": "Face_Shield",
|
67 |
+
"2": "Gloves",
|
68 |
+
"3": "Goggles",
|
69 |
+
"4": "Mask"
|
70 |
+
},
|
71 |
+
"initializer_range": 0.01,
|
72 |
+
"is_encoder_decoder": true,
|
73 |
+
"label2id": {
|
74 |
+
"Coverall": 0,
|
75 |
+
"Face_Shield": 1,
|
76 |
+
"Gloves": 2,
|
77 |
+
"Goggles": 3,
|
78 |
+
"Mask": 4
|
79 |
+
},
|
80 |
+
"label_noise_ratio": 0.5,
|
81 |
+
"layer_norm_eps": 1e-05,
|
82 |
+
"learn_initial_query": false,
|
83 |
+
"matcher_alpha": 0.25,
|
84 |
+
"matcher_bbox_cost": 5.0,
|
85 |
+
"matcher_class_cost": 2.0,
|
86 |
+
"matcher_gamma": 2.0,
|
87 |
+
"matcher_giou_cost": 2.0,
|
88 |
+
"model_type": "rt_detr",
|
89 |
+
"normalize_before": false,
|
90 |
+
"num_denoising": 100,
|
91 |
+
"num_feature_levels": 3,
|
92 |
+
"num_queries": 300,
|
93 |
+
"positional_encoding_temperature": 10000,
|
94 |
+
"torch_dtype": "float32",
|
95 |
+
"transformers_version": "4.42.0.dev0",
|
96 |
+
"use_focal_loss": true,
|
97 |
+
"use_pretrained_backbone": false,
|
98 |
+
"use_timm_backbone": false,
|
99 |
+
"weight_loss_bbox": 5.0,
|
100 |
+
"weight_loss_giou": 2.0,
|
101 |
+
"weight_loss_vfl": 1.0,
|
102 |
+
"with_box_refine": true
|
103 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:413ed3a995654134e963d112c41cc2cc24b184550e53d9d516e8680b6e64595e
|
3 |
+
size 171559340
|
preprocessor_config.json
ADDED
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_valid_processor_keys": [
|
3 |
+
"images",
|
4 |
+
"annotations",
|
5 |
+
"return_segmentation_masks",
|
6 |
+
"masks_path",
|
7 |
+
"do_resize",
|
8 |
+
"size",
|
9 |
+
"resample",
|
10 |
+
"do_rescale",
|
11 |
+
"rescale_factor",
|
12 |
+
"do_normalize",
|
13 |
+
"do_convert_annotations",
|
14 |
+
"image_mean",
|
15 |
+
"image_std",
|
16 |
+
"do_pad",
|
17 |
+
"pad_size",
|
18 |
+
"format",
|
19 |
+
"return_tensors",
|
20 |
+
"data_format",
|
21 |
+
"input_data_format"
|
22 |
+
],
|
23 |
+
"do_convert_annotations": true,
|
24 |
+
"do_normalize": false,
|
25 |
+
"do_pad": true,
|
26 |
+
"do_rescale": true,
|
27 |
+
"do_resize": true,
|
28 |
+
"format": "coco_detection",
|
29 |
+
"image_mean": [
|
30 |
+
0.485,
|
31 |
+
0.456,
|
32 |
+
0.406
|
33 |
+
],
|
34 |
+
"image_processor_type": "RTDetrImageProcessor",
|
35 |
+
"image_std": [
|
36 |
+
0.229,
|
37 |
+
0.224,
|
38 |
+
0.225
|
39 |
+
],
|
40 |
+
"pad_size": {
|
41 |
+
"height": 480,
|
42 |
+
"width": 480
|
43 |
+
},
|
44 |
+
"resample": 2,
|
45 |
+
"rescale_factor": 0.00392156862745098,
|
46 |
+
"size": {
|
47 |
+
"max_height": 480,
|
48 |
+
"max_width": 480
|
49 |
+
}
|
50 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0fb98b021a5254f8cc29718630809f9cf6b2440efe99f8b4dfcc0120502acd06
|
3 |
+
size 5112
|