EOT
Browse files- README.md +49 -0
- config.json +85 -0
- model.safetensors +3 -0
- preprocessor_config.json +26 -0
- training_args.bin +3 -0
README.md
ADDED
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
library_name: transformers
|
3 |
+
tags:
|
4 |
+
- generated_from_trainer
|
5 |
+
datasets:
|
6 |
+
- doc_lay_net
|
7 |
+
model-index:
|
8 |
+
- name: Deformable-DETR-Document-Layout-Analyzer
|
9 |
+
results: []
|
10 |
+
---
|
11 |
+
|
12 |
+
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
13 |
+
should probably proofread and complete it, then remove this comment. -->
|
14 |
+
|
15 |
+
# Deformable-DETR-Document-Layout-Analyzer
|
16 |
+
|
17 |
+
This model was trained from scratch on the doc_lay_net dataset.
|
18 |
+
|
19 |
+
## Model description
|
20 |
+
|
21 |
+
More information needed
|
22 |
+
|
23 |
+
## Intended uses & limitations
|
24 |
+
|
25 |
+
More information needed
|
26 |
+
|
27 |
+
## Training and evaluation data
|
28 |
+
|
29 |
+
More information needed
|
30 |
+
|
31 |
+
## Training procedure
|
32 |
+
|
33 |
+
### Training hyperparameters
|
34 |
+
|
35 |
+
The following hyperparameters were used during training:
|
36 |
+
- learning_rate: 5e-05
|
37 |
+
- train_batch_size: 24
|
38 |
+
- eval_batch_size: 24
|
39 |
+
- seed: 42
|
40 |
+
- optimizer: Use adamw_torch with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
|
41 |
+
- lr_scheduler_type: cosine
|
42 |
+
- num_epochs: 2
|
43 |
+
|
44 |
+
### Framework versions
|
45 |
+
|
46 |
+
- Transformers 4.49.0
|
47 |
+
- Pytorch 2.6.0+cu124
|
48 |
+
- Datasets 2.21.0
|
49 |
+
- Tokenizers 0.21.0
|
config.json
ADDED
@@ -0,0 +1,85 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "/home/ubuntu/DETR/Deformable-DETR-Document-Layout-Analyzer/checkpoint-17500",
|
3 |
+
"activation_dropout": 0.0,
|
4 |
+
"activation_function": "relu",
|
5 |
+
"architectures": [
|
6 |
+
"DeformableDetrForObjectDetection"
|
7 |
+
],
|
8 |
+
"attention_dropout": 0.0,
|
9 |
+
"auxiliary_loss": true,
|
10 |
+
"backbone": "resnet50",
|
11 |
+
"backbone_config": null,
|
12 |
+
"backbone_kwargs": {
|
13 |
+
"in_chans": 3,
|
14 |
+
"out_indices": [
|
15 |
+
2,
|
16 |
+
3,
|
17 |
+
4
|
18 |
+
]
|
19 |
+
},
|
20 |
+
"bbox_cost": 5,
|
21 |
+
"bbox_loss_coefficient": 5,
|
22 |
+
"class_cost": 1,
|
23 |
+
"d_model": 256,
|
24 |
+
"decoder_attention_heads": 8,
|
25 |
+
"decoder_ffn_dim": 1024,
|
26 |
+
"decoder_layerdrop": 0.0,
|
27 |
+
"decoder_layers": 6,
|
28 |
+
"decoder_n_points": 4,
|
29 |
+
"dice_loss_coefficient": 1,
|
30 |
+
"dilation": false,
|
31 |
+
"disable_custom_kernels": false,
|
32 |
+
"dropout": 0.1,
|
33 |
+
"encoder_attention_heads": 8,
|
34 |
+
"encoder_ffn_dim": 1024,
|
35 |
+
"encoder_layerdrop": 0.0,
|
36 |
+
"encoder_layers": 6,
|
37 |
+
"encoder_n_points": 4,
|
38 |
+
"eos_coefficient": 0.1,
|
39 |
+
"focal_alpha": 0.25,
|
40 |
+
"giou_cost": 2,
|
41 |
+
"giou_loss_coefficient": 2,
|
42 |
+
"id2label": {
|
43 |
+
"0": "Caption",
|
44 |
+
"1": "Footnote",
|
45 |
+
"2": "Formula",
|
46 |
+
"3": "List-item",
|
47 |
+
"4": "Page-footer",
|
48 |
+
"5": "Page-header",
|
49 |
+
"6": "Picture",
|
50 |
+
"7": "Section-header",
|
51 |
+
"8": "Table",
|
52 |
+
"9": "Text",
|
53 |
+
"10": "Title"
|
54 |
+
},
|
55 |
+
"init_std": 0.02,
|
56 |
+
"init_xavier_std": 1.0,
|
57 |
+
"is_encoder_decoder": true,
|
58 |
+
"label2id": {
|
59 |
+
"Caption": 0,
|
60 |
+
"Footnote": 1,
|
61 |
+
"Formula": 2,
|
62 |
+
"List-item": 3,
|
63 |
+
"Page-footer": 4,
|
64 |
+
"Page-header": 5,
|
65 |
+
"Picture": 6,
|
66 |
+
"Section-header": 7,
|
67 |
+
"Table": 8,
|
68 |
+
"Text": 9,
|
69 |
+
"Title": 10
|
70 |
+
},
|
71 |
+
"mask_loss_coefficient": 1,
|
72 |
+
"max_position_embeddings": 1024,
|
73 |
+
"model_type": "deformable_detr",
|
74 |
+
"num_channels": 3,
|
75 |
+
"num_feature_levels": 4,
|
76 |
+
"num_queries": 300,
|
77 |
+
"position_embedding_type": "sine",
|
78 |
+
"torch_dtype": "float32",
|
79 |
+
"transformers_version": "4.49.0",
|
80 |
+
"two_stage": false,
|
81 |
+
"two_stage_num_proposals": 300,
|
82 |
+
"use_pretrained_backbone": true,
|
83 |
+
"use_timm_backbone": true,
|
84 |
+
"with_box_refine": false
|
85 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e9cbca200dd66928dd7c765bfe20d9594a1c06e46f4598c636e4f59ce0acb882
|
3 |
+
size 160686748
|
preprocessor_config.json
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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": "DeformableDetrImageProcessor",
|
14 |
+
"image_std": [
|
15 |
+
0.229,
|
16 |
+
0.224,
|
17 |
+
0.225
|
18 |
+
],
|
19 |
+
"pad_size": null,
|
20 |
+
"resample": 2,
|
21 |
+
"rescale_factor": 0.00392156862745098,
|
22 |
+
"size": {
|
23 |
+
"longest_edge": 1333,
|
24 |
+
"shortest_edge": 800
|
25 |
+
}
|
26 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:663f79a578a02dafa6a93a8ca91530fe051c9ac65bbebc404eac4154c79f943c
|
3 |
+
size 5368
|