Upload 15 files
Browse files- checkpoint-200/config.json +55 -0
- checkpoint-200/optimizer.pt +3 -0
- checkpoint-200/preprocessor_config.json +24 -0
- checkpoint-200/pytorch_model.bin +3 -0
- checkpoint-200/rng_state.pth +3 -0
- checkpoint-200/scaler.pt +3 -0
- checkpoint-200/scheduler.pt +3 -0
- checkpoint-200/trainer_state.json +40 -0
- checkpoint-200/training_args.bin +3 -0
- config.json +55 -0
- preprocessor_config.json +24 -0
- pytorch_model.bin +3 -0
- runs/Feb03_06-55-03_20ee710f54ce/1675407326.4883704/events.out.tfevents.1675407326.20ee710f54ce.1663.5 +3 -0
- runs/Feb03_06-55-03_20ee710f54ce/events.out.tfevents.1675407326.20ee710f54ce.1663.4 +3 -0
- training_args.bin +3 -0
checkpoint-200/config.json
ADDED
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
"bbox_cost": 5,
|
13 |
+
"bbox_loss_coefficient": 5,
|
14 |
+
"class_cost": 1,
|
15 |
+
"d_model": 256,
|
16 |
+
"decoder_attention_heads": 8,
|
17 |
+
"decoder_ffn_dim": 2048,
|
18 |
+
"decoder_layerdrop": 0.0,
|
19 |
+
"decoder_layers": 6,
|
20 |
+
"dice_loss_coefficient": 1,
|
21 |
+
"dilation": false,
|
22 |
+
"dropout": 0.1,
|
23 |
+
"encoder_attention_heads": 8,
|
24 |
+
"encoder_ffn_dim": 2048,
|
25 |
+
"encoder_layerdrop": 0.0,
|
26 |
+
"encoder_layers": 6,
|
27 |
+
"eos_coefficient": 0.1,
|
28 |
+
"giou_cost": 2,
|
29 |
+
"giou_loss_coefficient": 2,
|
30 |
+
"id2label": {
|
31 |
+
"1": "neck",
|
32 |
+
"2": "body",
|
33 |
+
"3": "sleeve"
|
34 |
+
},
|
35 |
+
"init_std": 0.02,
|
36 |
+
"init_xavier_std": 1.0,
|
37 |
+
"is_encoder_decoder": true,
|
38 |
+
"label2id": {
|
39 |
+
"body": 2,
|
40 |
+
"neck": 1,
|
41 |
+
"sleeve": 3
|
42 |
+
},
|
43 |
+
"mask_loss_coefficient": 1,
|
44 |
+
"max_position_embeddings": 1024,
|
45 |
+
"model_type": "detr",
|
46 |
+
"num_channels": 3,
|
47 |
+
"num_hidden_layers": 6,
|
48 |
+
"num_queries": 100,
|
49 |
+
"position_embedding_type": "sine",
|
50 |
+
"scale_embedding": false,
|
51 |
+
"torch_dtype": "float32",
|
52 |
+
"transformers_version": "4.26.0",
|
53 |
+
"use_pretrained_backbone": true,
|
54 |
+
"use_timm_backbone": true
|
55 |
+
}
|
checkpoint-200/optimizer.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:285449cd3b8e1512478f9a0f3925c8d19e3adf68b999e89a36d6ea1658e211a5
|
3 |
+
size 330479941
|
checkpoint-200/preprocessor_config.json
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"do_normalize": true,
|
3 |
+
"do_pad": true,
|
4 |
+
"do_rescale": true,
|
5 |
+
"do_resize": true,
|
6 |
+
"format": "coco_detection",
|
7 |
+
"image_mean": [
|
8 |
+
0.485,
|
9 |
+
0.456,
|
10 |
+
0.406
|
11 |
+
],
|
12 |
+
"image_processor_type": "DetrImageProcessor",
|
13 |
+
"image_std": [
|
14 |
+
0.229,
|
15 |
+
0.224,
|
16 |
+
0.225
|
17 |
+
],
|
18 |
+
"resample": 2,
|
19 |
+
"rescale_factor": 0.00392156862745098,
|
20 |
+
"size": {
|
21 |
+
"longest_edge": 1333,
|
22 |
+
"shortest_edge": 800
|
23 |
+
}
|
24 |
+
}
|
checkpoint-200/pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e25ad4ef35634fdc988839f2dcb3093b2fb03c7b04e311a8b268f6f5015b68ae
|
3 |
+
size 166618149
|
checkpoint-200/rng_state.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e23b3b43c54f15c9268bf5d83ad9e74f3b80e80f305f683b38d0bd6830e5c891
|
3 |
+
size 14575
|
checkpoint-200/scaler.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:db2a911da58a5a5a62cd74b698aecd7511b2787eec9cfb3da445b9ee79d08882
|
3 |
+
size 557
|
checkpoint-200/scheduler.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2a9ff843be15b0329f9818b5032d15c526bae345024e538664609e0a00dd9cfc
|
3 |
+
size 627
|
checkpoint-200/trainer_state.json
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"best_metric": null,
|
3 |
+
"best_model_checkpoint": null,
|
4 |
+
"epoch": 40.0,
|
5 |
+
"global_step": 200,
|
6 |
+
"is_hyper_param_search": false,
|
7 |
+
"is_local_process_zero": true,
|
8 |
+
"is_world_process_zero": true,
|
9 |
+
"log_history": [
|
10 |
+
{
|
11 |
+
"epoch": 10.0,
|
12 |
+
"learning_rate": 8.28e-06,
|
13 |
+
"loss": 2.7914,
|
14 |
+
"step": 50
|
15 |
+
},
|
16 |
+
{
|
17 |
+
"epoch": 20.0,
|
18 |
+
"learning_rate": 6.3200000000000005e-06,
|
19 |
+
"loss": 1.8,
|
20 |
+
"step": 100
|
21 |
+
},
|
22 |
+
{
|
23 |
+
"epoch": 30.0,
|
24 |
+
"learning_rate": 4.32e-06,
|
25 |
+
"loss": 1.4705,
|
26 |
+
"step": 150
|
27 |
+
},
|
28 |
+
{
|
29 |
+
"epoch": 40.0,
|
30 |
+
"learning_rate": 2.3200000000000002e-06,
|
31 |
+
"loss": 1.207,
|
32 |
+
"step": 200
|
33 |
+
}
|
34 |
+
],
|
35 |
+
"max_steps": 250,
|
36 |
+
"num_train_epochs": 50,
|
37 |
+
"total_flos": 7.455214301184e+17,
|
38 |
+
"trial_name": null,
|
39 |
+
"trial_params": null
|
40 |
+
}
|
checkpoint-200/training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d286f68204cd619a39e94a4c6ebcadd72f19f929eac03562706f56b794acfbcb
|
3 |
+
size 3643
|
config.json
ADDED
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
"bbox_cost": 5,
|
13 |
+
"bbox_loss_coefficient": 5,
|
14 |
+
"class_cost": 1,
|
15 |
+
"d_model": 256,
|
16 |
+
"decoder_attention_heads": 8,
|
17 |
+
"decoder_ffn_dim": 2048,
|
18 |
+
"decoder_layerdrop": 0.0,
|
19 |
+
"decoder_layers": 6,
|
20 |
+
"dice_loss_coefficient": 1,
|
21 |
+
"dilation": false,
|
22 |
+
"dropout": 0.1,
|
23 |
+
"encoder_attention_heads": 8,
|
24 |
+
"encoder_ffn_dim": 2048,
|
25 |
+
"encoder_layerdrop": 0.0,
|
26 |
+
"encoder_layers": 6,
|
27 |
+
"eos_coefficient": 0.1,
|
28 |
+
"giou_cost": 2,
|
29 |
+
"giou_loss_coefficient": 2,
|
30 |
+
"id2label": {
|
31 |
+
"1": "neck",
|
32 |
+
"2": "body",
|
33 |
+
"3": "sleeve"
|
34 |
+
},
|
35 |
+
"init_std": 0.02,
|
36 |
+
"init_xavier_std": 1.0,
|
37 |
+
"is_encoder_decoder": true,
|
38 |
+
"label2id": {
|
39 |
+
"body": 2,
|
40 |
+
"neck": 1,
|
41 |
+
"sleeve": 3
|
42 |
+
},
|
43 |
+
"mask_loss_coefficient": 1,
|
44 |
+
"max_position_embeddings": 1024,
|
45 |
+
"model_type": "detr",
|
46 |
+
"num_channels": 3,
|
47 |
+
"num_hidden_layers": 6,
|
48 |
+
"num_queries": 100,
|
49 |
+
"position_embedding_type": "sine",
|
50 |
+
"scale_embedding": false,
|
51 |
+
"torch_dtype": "float32",
|
52 |
+
"transformers_version": "4.26.0",
|
53 |
+
"use_pretrained_backbone": true,
|
54 |
+
"use_timm_backbone": true
|
55 |
+
}
|
preprocessor_config.json
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"do_normalize": true,
|
3 |
+
"do_pad": true,
|
4 |
+
"do_rescale": true,
|
5 |
+
"do_resize": true,
|
6 |
+
"format": "coco_detection",
|
7 |
+
"image_mean": [
|
8 |
+
0.485,
|
9 |
+
0.456,
|
10 |
+
0.406
|
11 |
+
],
|
12 |
+
"image_processor_type": "DetrImageProcessor",
|
13 |
+
"image_std": [
|
14 |
+
0.229,
|
15 |
+
0.224,
|
16 |
+
0.225
|
17 |
+
],
|
18 |
+
"resample": 2,
|
19 |
+
"rescale_factor": 0.00392156862745098,
|
20 |
+
"size": {
|
21 |
+
"longest_edge": 1333,
|
22 |
+
"shortest_edge": 800
|
23 |
+
}
|
24 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e25ad4ef35634fdc988839f2dcb3093b2fb03c7b04e311a8b268f6f5015b68ae
|
3 |
+
size 166618149
|
runs/Feb03_06-55-03_20ee710f54ce/1675407326.4883704/events.out.tfevents.1675407326.20ee710f54ce.1663.5
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c335ecd369553e47303d0b12601ae0e4db93c99a8b6bec5142790172b423614d
|
3 |
+
size 5876
|
runs/Feb03_06-55-03_20ee710f54ce/events.out.tfevents.1675407326.20ee710f54ce.1663.4
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e407260f039ddb0469bb0bca28f3d07e6a40f0a7786ed31de7f2ecd7324bf99a
|
3 |
+
size 5769
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d286f68204cd619a39e94a4c6ebcadd72f19f929eac03562706f56b794acfbcb
|
3 |
+
size 3643
|