Commit
•
80b09da
1
Parent(s):
7341837
finished training
Browse files- .gitignore +1 -0
- config.json +59 -0
- preprocessor_config.json +25 -0
- pytorch_model.bin +3 -0
- runs/Dec08_14-35-36_ee7efbf7e3d0/1670510143.9969149/events.out.tfevents.1670510143.ee7efbf7e3d0.68.1 +3 -0
- runs/Dec08_14-35-36_ee7efbf7e3d0/events.out.tfevents.1670510143.ee7efbf7e3d0.68.0 +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
"bbox_cost": 5,
|
12 |
+
"bbox_loss_coefficient": 5,
|
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.1,
|
27 |
+
"giou_cost": 2,
|
28 |
+
"giou_loss_coefficient": 2,
|
29 |
+
"id2label": {
|
30 |
+
"0": "Image",
|
31 |
+
"1": "Main heading (CAPS)",
|
32 |
+
"2": "Page header (TRADES)",
|
33 |
+
"3": "Running heads",
|
34 |
+
"4": "Section title",
|
35 |
+
"5": "Text Box"
|
36 |
+
},
|
37 |
+
"init_std": 0.02,
|
38 |
+
"init_xavier_std": 1.0,
|
39 |
+
"is_encoder_decoder": true,
|
40 |
+
"label2id": {
|
41 |
+
"Image": 0,
|
42 |
+
"Main heading (CAPS)": 1,
|
43 |
+
"Page header (TRADES)": 2,
|
44 |
+
"Running heads": 3,
|
45 |
+
"Section title": 4,
|
46 |
+
"Text Box": 5
|
47 |
+
},
|
48 |
+
"mask_loss_coefficient": 1,
|
49 |
+
"max_position_embeddings": 1024,
|
50 |
+
"model_type": "detr",
|
51 |
+
"num_channels": 3,
|
52 |
+
"num_hidden_layers": 6,
|
53 |
+
"num_queries": 100,
|
54 |
+
"position_embedding_type": "sine",
|
55 |
+
"scale_embedding": false,
|
56 |
+
"torch_dtype": "float32",
|
57 |
+
"transformers_version": "4.25.1",
|
58 |
+
"use_pretrained_backbone": true
|
59 |
+
}
|
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:51225b225ffca4626dcbc8a33ada8798208afeaf52eb3ec8cb56fff152cb170b
|
3 |
+
size 166613797
|
runs/Dec08_14-35-36_ee7efbf7e3d0/1670510143.9969149/events.out.tfevents.1670510143.ee7efbf7e3d0.68.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9263ca6c92e87e37d1e50e3d72c11ffe705b6690cc6b217ce630a42b69d9cae0
|
3 |
+
size 5609
|
runs/Dec08_14-35-36_ee7efbf7e3d0/events.out.tfevents.1670510143.ee7efbf7e3d0.68.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:96a1aff6cfc89507458cfedfbbc078097909e648c822689e936254c26a588312
|
3 |
+
size 4939
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:480fa90fa7c4d90d703fae336128536d20f881496a836a54b4fc000b1ef5cd47
|
3 |
+
size 3515
|