kaydee commited on
Commit
a4eb1bc
1 Parent(s): 870ae6d

Training in progress, step 500

Browse files
config.json ADDED
@@ -0,0 +1,96 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "Ignore",
18
+ "1": "Store_name_value",
19
+ "2": "Store_name_key",
20
+ "3": "Store_addr_value",
21
+ "4": "Store_addr_key",
22
+ "5": "Tel_value",
23
+ "6": "Tel_key",
24
+ "7": "Date_value",
25
+ "8": "Date_key",
26
+ "9": "Time_value",
27
+ "10": "Time_key",
28
+ "11": "Prod_item_value",
29
+ "12": "Prod_item_key",
30
+ "13": "Prod_quantity_value",
31
+ "14": "Prod_quantity_key",
32
+ "15": "Prod_price_value",
33
+ "16": "Prod_price_key",
34
+ "17": "Subtotal_value",
35
+ "18": "Subtotal_key",
36
+ "19": "Tax_value",
37
+ "20": "Tax_key",
38
+ "21": "Tips_value",
39
+ "22": "Tips_key",
40
+ "23": "Total_value",
41
+ "24": "Total_key",
42
+ "25": "Others"
43
+ },
44
+ "initializer_range": 0.02,
45
+ "input_size": 224,
46
+ "intermediate_size": 3072,
47
+ "label2id": {
48
+ "Date_key": 8,
49
+ "Date_value": 7,
50
+ "Ignore": 0,
51
+ "Others": 25,
52
+ "Prod_item_key": 12,
53
+ "Prod_item_value": 11,
54
+ "Prod_price_key": 16,
55
+ "Prod_price_value": 15,
56
+ "Prod_quantity_key": 14,
57
+ "Prod_quantity_value": 13,
58
+ "Store_addr_key": 4,
59
+ "Store_addr_value": 3,
60
+ "Store_name_key": 2,
61
+ "Store_name_value": 1,
62
+ "Subtotal_key": 18,
63
+ "Subtotal_value": 17,
64
+ "Tax_key": 20,
65
+ "Tax_value": 19,
66
+ "Tel_key": 6,
67
+ "Tel_value": 5,
68
+ "Time_key": 10,
69
+ "Time_value": 9,
70
+ "Tips_key": 22,
71
+ "Tips_value": 21,
72
+ "Total_key": 24,
73
+ "Total_value": 23
74
+ },
75
+ "layer_norm_eps": 1e-05,
76
+ "max_2d_position_embeddings": 1024,
77
+ "max_position_embeddings": 514,
78
+ "max_rel_2d_pos": 256,
79
+ "max_rel_pos": 128,
80
+ "model_type": "layoutlmv3",
81
+ "num_attention_heads": 12,
82
+ "num_channels": 3,
83
+ "num_hidden_layers": 12,
84
+ "pad_token_id": 1,
85
+ "patch_size": 16,
86
+ "rel_2d_pos_bins": 64,
87
+ "rel_pos_bins": 32,
88
+ "second_input_size": 112,
89
+ "shape_size": 128,
90
+ "text_embed": true,
91
+ "torch_dtype": "float32",
92
+ "transformers_version": "4.40.0.dev0",
93
+ "type_vocab_size": 1,
94
+ "visual_embed": true,
95
+ "vocab_size": 50265
96
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:efdf5b5891220cc0f1a513537cb0749dee84bae80c8b6599f73f0125b539d33a
3
+ size 503776576
preprocessor_config.json ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_valid_processor_keys": [
3
+ "images",
4
+ "do_resize",
5
+ "size",
6
+ "resample",
7
+ "do_rescale",
8
+ "rescale_factor",
9
+ "do_normalize",
10
+ "image_mean",
11
+ "image_std",
12
+ "apply_ocr",
13
+ "ocr_lang",
14
+ "tesseract_config",
15
+ "return_tensors",
16
+ "data_format",
17
+ "input_data_format"
18
+ ],
19
+ "apply_ocr": false,
20
+ "do_normalize": true,
21
+ "do_rescale": true,
22
+ "do_resize": true,
23
+ "image_mean": [
24
+ 0.5,
25
+ 0.5,
26
+ 0.5
27
+ ],
28
+ "image_processor_type": "LayoutLMv3ImageProcessor",
29
+ "image_std": [
30
+ 0.5,
31
+ 0.5,
32
+ 0.5
33
+ ],
34
+ "ocr_lang": null,
35
+ "processor_class": "LayoutLMv3Processor",
36
+ "resample": 2,
37
+ "rescale_factor": 0.00392156862745098,
38
+ "size": {
39
+ "height": 224,
40
+ "width": 224
41
+ },
42
+ "tesseract_config": ""
43
+ }
runs/Mar28_10-41-50_c974346ac33f/events.out.tfevents.1711622550.c974346ac33f.187.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9b38da3e55bb131a5a7a3ef55f1874cb5e90dde38caa9f5fe7f2c2cec836f889
3
+ size 8841
special_tokens_map.json ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<s>",
4
+ "lstrip": false,
5
+ "normalized": true,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "cls_token": {
10
+ "content": "<s>",
11
+ "lstrip": false,
12
+ "normalized": true,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "eos_token": {
17
+ "content": "</s>",
18
+ "lstrip": false,
19
+ "normalized": true,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ },
23
+ "mask_token": {
24
+ "content": "<mask>",
25
+ "lstrip": true,
26
+ "normalized": true,
27
+ "rstrip": false,
28
+ "single_word": false
29
+ },
30
+ "pad_token": {
31
+ "content": "<pad>",
32
+ "lstrip": false,
33
+ "normalized": true,
34
+ "rstrip": false,
35
+ "single_word": false
36
+ },
37
+ "sep_token": {
38
+ "content": "</s>",
39
+ "lstrip": false,
40
+ "normalized": true,
41
+ "rstrip": false,
42
+ "single_word": false
43
+ },
44
+ "unk_token": {
45
+ "content": "<unk>",
46
+ "lstrip": false,
47
+ "normalized": true,
48
+ "rstrip": false,
49
+ "single_word": false
50
+ }
51
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": true,
3
+ "added_tokens_decoder": {
4
+ "0": {
5
+ "content": "<s>",
6
+ "lstrip": false,
7
+ "normalized": true,
8
+ "rstrip": false,
9
+ "single_word": false,
10
+ "special": true
11
+ },
12
+ "1": {
13
+ "content": "<pad>",
14
+ "lstrip": false,
15
+ "normalized": true,
16
+ "rstrip": false,
17
+ "single_word": false,
18
+ "special": true
19
+ },
20
+ "2": {
21
+ "content": "</s>",
22
+ "lstrip": false,
23
+ "normalized": true,
24
+ "rstrip": false,
25
+ "single_word": false,
26
+ "special": true
27
+ },
28
+ "3": {
29
+ "content": "<unk>",
30
+ "lstrip": false,
31
+ "normalized": true,
32
+ "rstrip": false,
33
+ "single_word": false,
34
+ "special": true
35
+ },
36
+ "50264": {
37
+ "content": "<mask>",
38
+ "lstrip": true,
39
+ "normalized": true,
40
+ "rstrip": false,
41
+ "single_word": false,
42
+ "special": true
43
+ }
44
+ },
45
+ "apply_ocr": false,
46
+ "bos_token": "<s>",
47
+ "clean_up_tokenization_spaces": true,
48
+ "cls_token": "<s>",
49
+ "cls_token_box": [
50
+ 0,
51
+ 0,
52
+ 0,
53
+ 0
54
+ ],
55
+ "eos_token": "</s>",
56
+ "errors": "replace",
57
+ "mask_token": "<mask>",
58
+ "model_max_length": 512,
59
+ "only_label_first_subword": true,
60
+ "pad_token": "<pad>",
61
+ "pad_token_box": [
62
+ 0,
63
+ 0,
64
+ 0,
65
+ 0
66
+ ],
67
+ "pad_token_label": -100,
68
+ "processor_class": "LayoutLMv3Processor",
69
+ "sep_token": "</s>",
70
+ "sep_token_box": [
71
+ 0,
72
+ 0,
73
+ 0,
74
+ 0
75
+ ],
76
+ "tokenizer_class": "LayoutLMv3Tokenizer",
77
+ "trim_offsets": true,
78
+ "unk_token": "<unk>"
79
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b41e2bf806a7f00c3bee445d99d890207abbb94fd9b588e399f679f909f98a98
3
+ size 4984
vocab.json ADDED
The diff for this file is too large to render. See raw diff