aisuko commited on
Commit
925746a
1 Parent(s): 11df329

ft-ms-layoutlmv3-funsd-layoutlmv3

Browse files
Files changed (4) hide show
  1. README.md +93 -0
  2. config.json +58 -0
  3. model.safetensors +3 -0
  4. training_args.bin +3 -0
README.md ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-sa-4.0
3
+ base_model: microsoft/layoutlmv3-base
4
+ tags:
5
+ - generated_from_trainer
6
+ datasets:
7
+ - funsd-layoutlmv3
8
+ metrics:
9
+ - precision
10
+ - recall
11
+ - f1
12
+ - accuracy
13
+ model-index:
14
+ - name: ft-ms-layoutlmv3-funsd-layoutlmv3
15
+ results:
16
+ - task:
17
+ name: Token Classification
18
+ type: token-classification
19
+ dataset:
20
+ name: funsd-layoutlmv3
21
+ type: funsd-layoutlmv3
22
+ config: funsd
23
+ split: test
24
+ args: funsd
25
+ metrics:
26
+ - name: Precision
27
+ type: precision
28
+ value: 0.14907749077490776
29
+ - name: Recall
30
+ type: recall
31
+ value: 0.20069547938400398
32
+ - name: F1
33
+ type: f1
34
+ value: 0.17107770484861318
35
+ - name: Accuracy
36
+ type: accuracy
37
+ value: 0.40377986449542375
38
+ ---
39
+
40
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
41
+ should probably proofread and complete it, then remove this comment. -->
42
+
43
+ # ft-ms-layoutlmv3-funsd-layoutlmv3
44
+
45
+ This model is a fine-tuned version of [microsoft/layoutlmv3-base](https://huggingface.co/microsoft/layoutlmv3-base) on the funsd-layoutlmv3 dataset.
46
+ It achieves the following results on the evaluation set:
47
+ - Loss: 1.5641
48
+ - Precision: 0.1491
49
+ - Recall: 0.2007
50
+ - F1: 0.1711
51
+ - Accuracy: 0.4038
52
+
53
+ ## Model description
54
+
55
+ More information needed
56
+
57
+ ## Intended uses & limitations
58
+
59
+ More information needed
60
+
61
+ ## Training and evaluation data
62
+
63
+ More information needed
64
+
65
+ ## Training procedure
66
+
67
+ ### Training hyperparameters
68
+
69
+ The following hyperparameters were used during training:
70
+ - learning_rate: 1e-05
71
+ - train_batch_size: 4
72
+ - eval_batch_size: 4
73
+ - seed: 42
74
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
75
+ - lr_scheduler_type: linear
76
+ - training_steps: 20
77
+
78
+ ### Training results
79
+
80
+ | Training Loss | Epoch | Step | Validation Loss | Precision | Recall | F1 | Accuracy |
81
+ |:-------------:|:-----:|:----:|:---------------:|:---------:|:------:|:------:|:--------:|
82
+ | No log | 0.13 | 5 | 1.6893 | 0.0938 | 0.1461 | 0.1142 | 0.3520 |
83
+ | No log | 0.26 | 10 | 1.6149 | 0.1202 | 0.1585 | 0.1367 | 0.3874 |
84
+ | No log | 0.39 | 15 | 1.5797 | 0.1414 | 0.1913 | 0.1626 | 0.3991 |
85
+ | No log | 0.53 | 20 | 1.5641 | 0.1491 | 0.2007 | 0.1711 | 0.4038 |
86
+
87
+
88
+ ### Framework versions
89
+
90
+ - Transformers 4.35.2
91
+ - Pytorch 2.0.0
92
+ - Datasets 2.15.0
93
+ - Tokenizers 0.15.0
config.json ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "O",
18
+ "1": "B-HEADER",
19
+ "2": "I-HEADER",
20
+ "3": "B-QUESTION",
21
+ "4": "I-QUESTION",
22
+ "5": "B-ANSWER",
23
+ "6": "I-ANSWER"
24
+ },
25
+ "initializer_range": 0.02,
26
+ "input_size": 224,
27
+ "intermediate_size": 3072,
28
+ "label2id": {
29
+ "B-ANSWER": 5,
30
+ "B-HEADER": 1,
31
+ "B-QUESTION": 3,
32
+ "I-ANSWER": 6,
33
+ "I-HEADER": 2,
34
+ "I-QUESTION": 4,
35
+ "O": 0
36
+ },
37
+ "layer_norm_eps": 1e-05,
38
+ "max_2d_position_embeddings": 1024,
39
+ "max_position_embeddings": 514,
40
+ "max_rel_2d_pos": 256,
41
+ "max_rel_pos": 128,
42
+ "model_type": "layoutlmv3",
43
+ "num_attention_heads": 12,
44
+ "num_channels": 3,
45
+ "num_hidden_layers": 12,
46
+ "pad_token_id": 1,
47
+ "patch_size": 16,
48
+ "rel_2d_pos_bins": 64,
49
+ "rel_pos_bins": 32,
50
+ "second_input_size": 112,
51
+ "shape_size": 128,
52
+ "text_embed": true,
53
+ "torch_dtype": "float32",
54
+ "transformers_version": "4.35.2",
55
+ "type_vocab_size": 1,
56
+ "visual_embed": true,
57
+ "vocab_size": 50265
58
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:677ccd719f843f048663defc035c2cad55d80ae25530dfe736c7fecc9f2e6c0c
3
+ size 501355532
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c79c124ca090eb3267bcb272509d8e8831a3ef29881a26cff32f07bd031e3750
3
+ size 4155