Commit ·
2d3bcaf
1
Parent(s): 9683c1c
Training in progress, epoch 1
Browse files- .gitignore +1 -0
- config.json +66 -0
- logs/1678787546.7690516/events.out.tfevents.1678787546.138-2-233-57.3108.1 +3 -0
- logs/1678788002.6133099/events.out.tfevents.1678788002.138-2-233-57.3108.3 +3 -0
- logs/1678788507.590323/events.out.tfevents.1678788507.138-2-233-57.4477.1 +3 -0
- logs/1678788568.7318735/events.out.tfevents.1678788568.138-2-233-57.4477.3 +3 -0
- logs/1678788604.5330908/events.out.tfevents.1678788604.138-2-233-57.4477.5 +3 -0
- logs/1678788801.6955247/events.out.tfevents.1678788801.138-2-233-57.4477.7 +3 -0
- logs/1678796083.236509/events.out.tfevents.1678796083.138-2-233-57.9760.1 +3 -0
- logs/events.out.tfevents.1678787546.138-2-233-57.3108.0 +3 -0
- logs/events.out.tfevents.1678788002.138-2-233-57.3108.2 +3 -0
- logs/events.out.tfevents.1678788507.138-2-233-57.4477.0 +3 -0
- logs/events.out.tfevents.1678788568.138-2-233-57.4477.2 +3 -0
- logs/events.out.tfevents.1678788604.138-2-233-57.4477.4 +3 -0
- logs/events.out.tfevents.1678788801.138-2-233-57.4477.6 +3 -0
- logs/events.out.tfevents.1678796083.138-2-233-57.9760.0 +3 -0
- pytorch_model.bin +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
checkpoint-*/
|
config.json
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_name_or_path": "microsoft/layoutlmv3-base",
|
| 3 |
+
"architectures": [
|
| 4 |
+
"LayoutLMv3ForTokenClassification"
|
| 5 |
+
],
|
| 6 |
+
"attention_probs_dropout_prob": 0.1,
|
| 7 |
+
"bos_token_id": 0,
|
| 8 |
+
"classifier_dropout": null,
|
| 9 |
+
"coordinate_size": 128,
|
| 10 |
+
"eos_token_id": 2,
|
| 11 |
+
"has_relative_attention_bias": true,
|
| 12 |
+
"has_spatial_attention_bias": true,
|
| 13 |
+
"hidden_act": "gelu",
|
| 14 |
+
"hidden_dropout_prob": 0.1,
|
| 15 |
+
"hidden_size": 768,
|
| 16 |
+
"id2label": {
|
| 17 |
+
"0": "Caption",
|
| 18 |
+
"1": "Footnote",
|
| 19 |
+
"2": "Formula",
|
| 20 |
+
"3": "List-Item",
|
| 21 |
+
"4": "Page-Footer",
|
| 22 |
+
"5": "Page-Header",
|
| 23 |
+
"6": "Picture",
|
| 24 |
+
"7": "Section-Header",
|
| 25 |
+
"8": "Table",
|
| 26 |
+
"9": "Text",
|
| 27 |
+
"10": "Title"
|
| 28 |
+
},
|
| 29 |
+
"initializer_range": 0.02,
|
| 30 |
+
"input_size": 224,
|
| 31 |
+
"intermediate_size": 3072,
|
| 32 |
+
"label2id": {
|
| 33 |
+
"Caption": 0,
|
| 34 |
+
"Footnote": 1,
|
| 35 |
+
"Formula": 2,
|
| 36 |
+
"List-Item": 3,
|
| 37 |
+
"Page-Footer": 4,
|
| 38 |
+
"Page-Header": 5,
|
| 39 |
+
"Picture": 6,
|
| 40 |
+
"Section-Header": 7,
|
| 41 |
+
"Table": 8,
|
| 42 |
+
"Text": 9,
|
| 43 |
+
"Title": 10
|
| 44 |
+
},
|
| 45 |
+
"layer_norm_eps": 1e-05,
|
| 46 |
+
"max_2d_position_embeddings": 1024,
|
| 47 |
+
"max_position_embeddings": 514,
|
| 48 |
+
"max_rel_2d_pos": 256,
|
| 49 |
+
"max_rel_pos": 128,
|
| 50 |
+
"model_type": "layoutlmv3",
|
| 51 |
+
"num_attention_heads": 12,
|
| 52 |
+
"num_channels": 3,
|
| 53 |
+
"num_hidden_layers": 12,
|
| 54 |
+
"pad_token_id": 1,
|
| 55 |
+
"patch_size": 16,
|
| 56 |
+
"rel_2d_pos_bins": 64,
|
| 57 |
+
"rel_pos_bins": 32,
|
| 58 |
+
"second_input_size": 112,
|
| 59 |
+
"shape_size": 128,
|
| 60 |
+
"text_embed": true,
|
| 61 |
+
"torch_dtype": "float32",
|
| 62 |
+
"transformers_version": "4.26.0",
|
| 63 |
+
"type_vocab_size": 1,
|
| 64 |
+
"visual_embed": true,
|
| 65 |
+
"vocab_size": 50265
|
| 66 |
+
}
|
logs/1678787546.7690516/events.out.tfevents.1678787546.138-2-233-57.3108.1
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3a8efa63c109ff6794c65e3f065828498f29a0fecd3280507bf63f6664110d7b
|
| 3 |
+
size 5669
|
logs/1678788002.6133099/events.out.tfevents.1678788002.138-2-233-57.3108.3
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:09414a69844ffc0269fa1d089951dc99804b4d35e0d903e51d43cb810cc29d6f
|
| 3 |
+
size 5669
|
logs/1678788507.590323/events.out.tfevents.1678788507.138-2-233-57.4477.1
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4efe7a04a1b5acc174607d89244cd5ece3f31c90c811a3da5570cd81171fba0e
|
| 3 |
+
size 5669
|
logs/1678788568.7318735/events.out.tfevents.1678788568.138-2-233-57.4477.3
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a07b7c038c37952e74492fd5af863f29ce947d43857a5e2e180551c15caea77c
|
| 3 |
+
size 5669
|
logs/1678788604.5330908/events.out.tfevents.1678788604.138-2-233-57.4477.5
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1394025ddb950139f51f729d5bd4a9dd12f4de856e6534b7ee2904a9ddbc0b7e
|
| 3 |
+
size 5669
|
logs/1678788801.6955247/events.out.tfevents.1678788801.138-2-233-57.4477.7
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9b729d56057a43e8c58d4693508ec794756ed339c6d89300574b9a022760374f
|
| 3 |
+
size 5669
|
logs/1678796083.236509/events.out.tfevents.1678796083.138-2-233-57.9760.1
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:39dfc9b6d53fca3503b3d4b7e76b6b11dac9d821b8047e83b2f0f9e5112283d2
|
| 3 |
+
size 5669
|
logs/events.out.tfevents.1678787546.138-2-233-57.3108.0
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4d7b2aae698f07b220e858f3d78e24de3b2258af33ec3ce90cabc39724611c47
|
| 3 |
+
size 4615
|
logs/events.out.tfevents.1678788002.138-2-233-57.3108.2
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:47858e9b37aed8284919d947e98c16596a7e525504322a6a6600b941902ea0bb
|
| 3 |
+
size 4136
|
logs/events.out.tfevents.1678788507.138-2-233-57.4477.0
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b70286312db196e01138ddd145146a3da4fa3c8a86c25e5f040c374884a590a8
|
| 3 |
+
size 4615
|
logs/events.out.tfevents.1678788568.138-2-233-57.4477.2
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1447af2bf020d6f9e5671eaab7e17923bc29c5bd66001cc7a37aab76d1c9232d
|
| 3 |
+
size 4615
|
logs/events.out.tfevents.1678788604.138-2-233-57.4477.4
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ddf04cff10e880f76120e8482559b3b6223de4c714a4316efb5d4295f775dcac
|
| 3 |
+
size 4614
|
logs/events.out.tfevents.1678788801.138-2-233-57.4477.6
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b3b3f7601fbe8f394a90d2537760aca74fcd09f0f0f29941554d70e9a0d3ecc8
|
| 3 |
+
size 4136
|
logs/events.out.tfevents.1678796083.138-2-233-57.9760.0
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4170baafb0ec9280b28b7d06938f81a9f5d84b79481ebdd413abba248ac77a01
|
| 3 |
+
size 5263
|
pytorch_model.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a240f8898d3bad57f11ef1b0a96d0d124426012436489e003f0803a6e928a517
|
| 3 |
+
size 503781199
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:61175ee9b62050e9370f1407444b09d443d07206ceb6e62911ef1179f6edee31
|
| 3 |
+
size 3503
|