Commit
·
20b63ab
1
Parent(s):
7f6a2e1
Training in progress, step 200
Browse files- .gitignore +1 -0
- config.json +63 -0
- preprocessor_config.json +25 -0
- pytorch_model.bin +3 -0
- runs/Feb27_22-53-57_f55b95526a81/1677538447.360166/events.out.tfevents.1677538447.f55b95526a81.7445.1 +3 -0
- runs/Feb27_22-53-57_f55b95526a81/events.out.tfevents.1677538447.f55b95526a81.7445.0 +3 -0
- runs/Feb27_22-58-43_f55b95526a81/1677538726.7021508/events.out.tfevents.1677538726.f55b95526a81.7445.3 +3 -0
- runs/Feb27_22-58-43_f55b95526a81/events.out.tfevents.1677538726.f55b95526a81.7445.2 +3 -0
- runs/Feb27_23-02-12_f55b95526a81/1677538939.7426777/events.out.tfevents.1677538939.f55b95526a81.9826.1 +3 -0
- runs/Feb27_23-02-12_f55b95526a81/events.out.tfevents.1677538939.f55b95526a81.9826.0 +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
"0": "Photograph",
|
32 |
+
"1": "Illustration",
|
33 |
+
"2": "Map",
|
34 |
+
"3": "Comics/Cartoon",
|
35 |
+
"4": "Editorial Cartoon",
|
36 |
+
"5": "Headline",
|
37 |
+
"6": "Advertisement"
|
38 |
+
},
|
39 |
+
"init_std": 0.02,
|
40 |
+
"init_xavier_std": 1.0,
|
41 |
+
"is_encoder_decoder": true,
|
42 |
+
"label2id": {
|
43 |
+
"Advertisement": 6,
|
44 |
+
"Comics/Cartoon": 3,
|
45 |
+
"Editorial Cartoon": 4,
|
46 |
+
"Headline": 5,
|
47 |
+
"Illustration": 1,
|
48 |
+
"Map": 2,
|
49 |
+
"Photograph": 0
|
50 |
+
},
|
51 |
+
"mask_loss_coefficient": 1,
|
52 |
+
"max_position_embeddings": 1024,
|
53 |
+
"model_type": "detr",
|
54 |
+
"num_channels": 3,
|
55 |
+
"num_hidden_layers": 6,
|
56 |
+
"num_queries": 100,
|
57 |
+
"position_embedding_type": "sine",
|
58 |
+
"scale_embedding": false,
|
59 |
+
"torch_dtype": "float32",
|
60 |
+
"transformers_version": "4.26.1",
|
61 |
+
"use_pretrained_backbone": true,
|
62 |
+
"use_timm_backbone": true
|
63 |
+
}
|
preprocessor_config.json
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"do_normalize": true,
|
3 |
+
"do_pad": true,
|
4 |
+
"do_rescale": true,
|
5 |
+
"do_resize": true,
|
6 |
+
"feature_extractor_type": "DetrFeatureExtractor",
|
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 |
+
"resample": 2,
|
20 |
+
"rescale_factor": 0.00392156862745098,
|
21 |
+
"size": {
|
22 |
+
"longest_edge": 1333,
|
23 |
+
"shortest_edge": 800
|
24 |
+
}
|
25 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e3f43b8196afb86d2f3b71e06bf20ec14348ef9a53e5a39119f045a41ed1ec65
|
3 |
+
size 166622245
|
runs/Feb27_22-53-57_f55b95526a81/1677538447.360166/events.out.tfevents.1677538447.f55b95526a81.7445.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:129a760f2aecd8c40dfe90ab4cde8731f8f57211d5a42eeb4a61bfd62fbac823
|
3 |
+
size 5783
|
runs/Feb27_22-53-57_f55b95526a81/events.out.tfevents.1677538447.f55b95526a81.7445.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2208aadf09e9850d2be529bbc6c4485485dde88e06ed3b63e748246592ccc7c7
|
3 |
+
size 4919
|
runs/Feb27_22-58-43_f55b95526a81/1677538726.7021508/events.out.tfevents.1677538726.f55b95526a81.7445.3
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:21ab9587a2a29e3334bbc4fc6262187d4d98e56743fb8b918212311d40c17a73
|
3 |
+
size 5783
|
runs/Feb27_22-58-43_f55b95526a81/events.out.tfevents.1677538726.f55b95526a81.7445.2
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6f94ba75643889ef0820e10bb20f3e2d18db453105bed7fa1a63c124fd6361fc
|
3 |
+
size 4919
|
runs/Feb27_23-02-12_f55b95526a81/1677538939.7426777/events.out.tfevents.1677538939.f55b95526a81.9826.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c4bc9c6d976fd1657a53f79d2ff629928a90cff32c8108dcf7e8fea59ea767e0
|
3 |
+
size 5783
|
runs/Feb27_23-02-12_f55b95526a81/events.out.tfevents.1677538939.f55b95526a81.9826.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1d262237344fd1f682d0c92f9aee5da0aecce976c91416ca228416137c862dc1
|
3 |
+
size 5615
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:dc9087d164e482b46686d92fc8f02dc9f6ad471ee40671366c8dd6a0401d212e
|
3 |
+
size 3579
|