Training in progress epoch 0
Browse files- .gitignore +2 -0
- config.json +93 -0
- model.safetensors +3 -0
- preprocessor_config.json +29 -0
.gitignore
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
step_*
|
2 |
+
epoch_*
|
config.json
ADDED
@@ -0,0 +1,93 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "facebook/detr-resnet-50",
|
3 |
+
"activation_dropout": 0.0,
|
4 |
+
"activation_function": "relu",
|
5 |
+
"architectures": [
|
6 |
+
"DetrForObjectDetection"
|
7 |
+
],
|
8 |
+
"attention_dropout": 0.0,
|
9 |
+
"auxiliary_loss": false,
|
10 |
+
"backbone": "resnet50",
|
11 |
+
"backbone_config": null,
|
12 |
+
"backbone_kwargs": {
|
13 |
+
"in_chans": 3,
|
14 |
+
"out_indices": [
|
15 |
+
1,
|
16 |
+
2,
|
17 |
+
3,
|
18 |
+
4
|
19 |
+
]
|
20 |
+
},
|
21 |
+
"bbox_cost": 5,
|
22 |
+
"bbox_loss_coefficient": 5,
|
23 |
+
"class_cost": 1,
|
24 |
+
"classifier_dropout": 0.0,
|
25 |
+
"d_model": 256,
|
26 |
+
"decoder_attention_heads": 8,
|
27 |
+
"decoder_ffn_dim": 2048,
|
28 |
+
"decoder_layerdrop": 0.0,
|
29 |
+
"decoder_layers": 6,
|
30 |
+
"dice_loss_coefficient": 1,
|
31 |
+
"dilation": false,
|
32 |
+
"dropout": 0.1,
|
33 |
+
"encoder_attention_heads": 8,
|
34 |
+
"encoder_ffn_dim": 2048,
|
35 |
+
"encoder_layerdrop": 0.0,
|
36 |
+
"encoder_layers": 6,
|
37 |
+
"eos_coefficient": 0.1,
|
38 |
+
"giou_cost": 2,
|
39 |
+
"giou_loss_coefficient": 2,
|
40 |
+
"id2label": {
|
41 |
+
"0": "Person",
|
42 |
+
"1": "Ear",
|
43 |
+
"2": "Earmuffs",
|
44 |
+
"3": "Face",
|
45 |
+
"4": "Face-guard",
|
46 |
+
"5": "Face-mask-medical",
|
47 |
+
"6": "Foot",
|
48 |
+
"7": "Tools",
|
49 |
+
"8": "Glasses",
|
50 |
+
"9": "Gloves",
|
51 |
+
"10": "Helmet",
|
52 |
+
"11": "Hands",
|
53 |
+
"12": "Head",
|
54 |
+
"13": "Medical-suit",
|
55 |
+
"14": "Shoes",
|
56 |
+
"15": "Safety-suit",
|
57 |
+
"16": "Safety-vest"
|
58 |
+
},
|
59 |
+
"init_std": 0.02,
|
60 |
+
"init_xavier_std": 1.0,
|
61 |
+
"is_encoder_decoder": true,
|
62 |
+
"label2id": {
|
63 |
+
"Ear": 1,
|
64 |
+
"Earmuffs": 2,
|
65 |
+
"Face": 3,
|
66 |
+
"Face-guard": 4,
|
67 |
+
"Face-mask-medical": 5,
|
68 |
+
"Foot": 6,
|
69 |
+
"Glasses": 8,
|
70 |
+
"Gloves": 9,
|
71 |
+
"Hands": 11,
|
72 |
+
"Head": 12,
|
73 |
+
"Helmet": 10,
|
74 |
+
"Medical-suit": 13,
|
75 |
+
"Person": 0,
|
76 |
+
"Safety-suit": 15,
|
77 |
+
"Safety-vest": 16,
|
78 |
+
"Shoes": 14,
|
79 |
+
"Tools": 7
|
80 |
+
},
|
81 |
+
"mask_loss_coefficient": 1,
|
82 |
+
"max_position_embeddings": 1024,
|
83 |
+
"model_type": "detr",
|
84 |
+
"num_channels": 3,
|
85 |
+
"num_hidden_layers": 6,
|
86 |
+
"num_queries": 100,
|
87 |
+
"position_embedding_type": "sine",
|
88 |
+
"scale_embedding": false,
|
89 |
+
"torch_dtype": "float32",
|
90 |
+
"transformers_version": "4.46.0.dev0",
|
91 |
+
"use_pretrained_backbone": true,
|
92 |
+
"use_timm_backbone": true
|
93 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:93ac194c69086054f736db8ba1bee309ff68eb4c774d33f89ebb7d9a00daf47a
|
3 |
+
size 166511280
|
preprocessor_config.json
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"do_convert_annotations": true,
|
3 |
+
"do_normalize": true,
|
4 |
+
"do_pad": true,
|
5 |
+
"do_rescale": true,
|
6 |
+
"do_resize": true,
|
7 |
+
"format": "coco_detection",
|
8 |
+
"image_mean": [
|
9 |
+
0.485,
|
10 |
+
0.456,
|
11 |
+
0.406
|
12 |
+
],
|
13 |
+
"image_processor_type": "DetrImageProcessor",
|
14 |
+
"image_std": [
|
15 |
+
0.229,
|
16 |
+
0.224,
|
17 |
+
0.225
|
18 |
+
],
|
19 |
+
"pad_size": {
|
20 |
+
"height": 1200,
|
21 |
+
"width": 1200
|
22 |
+
},
|
23 |
+
"resample": 2,
|
24 |
+
"rescale_factor": 0.00392156862745098,
|
25 |
+
"size": {
|
26 |
+
"max_height": 1200,
|
27 |
+
"max_width": 1200
|
28 |
+
}
|
29 |
+
}
|