rajistics commited on
Commit
b820c95
1 Parent(s): 5709cec

Training in progress, step 500

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,258 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "microsoft/layoutlmv2-base-uncased",
3
+ "architectures": [
4
+ "LayoutLMv2ForTokenClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "convert_sync_batchnorm": true,
8
+ "coordinate_size": 128,
9
+ "detectron2_config_args": {
10
+ "MODEL.ANCHOR_GENERATOR.SIZES": [
11
+ [
12
+ 32
13
+ ],
14
+ [
15
+ 64
16
+ ],
17
+ [
18
+ 128
19
+ ],
20
+ [
21
+ 256
22
+ ],
23
+ [
24
+ 512
25
+ ]
26
+ ],
27
+ "MODEL.BACKBONE.NAME": "build_resnet_fpn_backbone",
28
+ "MODEL.FPN.IN_FEATURES": [
29
+ "res2",
30
+ "res3",
31
+ "res4",
32
+ "res5"
33
+ ],
34
+ "MODEL.MASK_ON": true,
35
+ "MODEL.PIXEL_STD": [
36
+ 57.375,
37
+ 57.12,
38
+ 58.395
39
+ ],
40
+ "MODEL.POST_NMS_TOPK_TEST": 1000,
41
+ "MODEL.RESNETS.ASPECT_RATIOS": [
42
+ [
43
+ 0.5,
44
+ 1.0,
45
+ 2.0
46
+ ]
47
+ ],
48
+ "MODEL.RESNETS.DEPTH": 101,
49
+ "MODEL.RESNETS.NUM_GROUPS": 32,
50
+ "MODEL.RESNETS.OUT_FEATURES": [
51
+ "res2",
52
+ "res3",
53
+ "res4",
54
+ "res5"
55
+ ],
56
+ "MODEL.RESNETS.SIZES": [
57
+ [
58
+ 32
59
+ ],
60
+ [
61
+ 64
62
+ ],
63
+ [
64
+ 128
65
+ ],
66
+ [
67
+ 256
68
+ ],
69
+ [
70
+ 512
71
+ ]
72
+ ],
73
+ "MODEL.RESNETS.STRIDE_IN_1X1": false,
74
+ "MODEL.RESNETS.WIDTH_PER_GROUP": 8,
75
+ "MODEL.ROI_BOX_HEAD.NAME": "FastRCNNConvFCHead",
76
+ "MODEL.ROI_BOX_HEAD.NUM_FC": 2,
77
+ "MODEL.ROI_BOX_HEAD.POOLER_RESOLUTION": 14,
78
+ "MODEL.ROI_HEADS.IN_FEATURES": [
79
+ "p2",
80
+ "p3",
81
+ "p4",
82
+ "p5"
83
+ ],
84
+ "MODEL.ROI_HEADS.NAME": "StandardROIHeads",
85
+ "MODEL.ROI_HEADS.NUM_CLASSES": 5,
86
+ "MODEL.ROI_MASK_HEAD.NAME": "MaskRCNNConvUpsampleHead",
87
+ "MODEL.ROI_MASK_HEAD.NUM_CONV": 4,
88
+ "MODEL.ROI_MASK_HEAD.POOLER_RESOLUTION": 7,
89
+ "MODEL.RPN.IN_FEATURES": [
90
+ "p2",
91
+ "p3",
92
+ "p4",
93
+ "p5",
94
+ "p6"
95
+ ],
96
+ "MODEL.RPN.POST_NMS_TOPK_TRAIN": 1000,
97
+ "MODEL.RPN.PRE_NMS_TOPK_TEST": 1000,
98
+ "MODEL.RPN.PRE_NMS_TOPK_TRAIN": 2000
99
+ },
100
+ "fast_qkv": true,
101
+ "gradient_checkpointing": false,
102
+ "has_relative_attention_bias": true,
103
+ "has_spatial_attention_bias": true,
104
+ "has_visual_segment_embedding": false,
105
+ "hidden_act": "gelu",
106
+ "hidden_dropout_prob": 0.1,
107
+ "hidden_size": 768,
108
+ "id2label": {
109
+ "0": "O",
110
+ "1": "B-MENU.NM",
111
+ "2": "B-MENU.NUM",
112
+ "3": "B-MENU.UNITPRICE",
113
+ "4": "B-MENU.CNT",
114
+ "5": "B-MENU.DISCOUNTPRICE",
115
+ "6": "B-MENU.PRICE",
116
+ "7": "B-MENU.ITEMSUBTOTAL",
117
+ "8": "B-MENU.VATYN",
118
+ "9": "B-MENU.ETC",
119
+ "10": "B-MENU.SUB_NM",
120
+ "11": "B-MENU.SUB_UNITPRICE",
121
+ "12": "B-MENU.SUB_CNT",
122
+ "13": "B-MENU.SUB_PRICE",
123
+ "14": "B-MENU.SUB_ETC",
124
+ "15": "B-VOID_MENU.NM",
125
+ "16": "B-VOID_MENU.PRICE",
126
+ "17": "B-SUB_TOTAL.SUBTOTAL_PRICE",
127
+ "18": "B-SUB_TOTAL.DISCOUNT_PRICE",
128
+ "19": "B-SUB_TOTAL.SERVICE_PRICE",
129
+ "20": "B-SUB_TOTAL.OTHERSVC_PRICE",
130
+ "21": "B-SUB_TOTAL.TAX_PRICE",
131
+ "22": "B-SUB_TOTAL.ETC",
132
+ "23": "B-TOTAL.TOTAL_PRICE",
133
+ "24": "B-TOTAL.TOTAL_ETC",
134
+ "25": "B-TOTAL.CASHPRICE",
135
+ "26": "B-TOTAL.CHANGEPRICE",
136
+ "27": "B-TOTAL.CREDITCARDPRICE",
137
+ "28": "B-TOTAL.EMONEYPRICE",
138
+ "29": "B-TOTAL.MENUTYPE_CNT",
139
+ "30": "B-TOTAL.MENUQTY_CNT",
140
+ "31": "I-MENU.NM",
141
+ "32": "I-MENU.NUM",
142
+ "33": "I-MENU.UNITPRICE",
143
+ "34": "I-MENU.CNT",
144
+ "35": "I-MENU.DISCOUNTPRICE",
145
+ "36": "I-MENU.PRICE",
146
+ "37": "I-MENU.ITEMSUBTOTAL",
147
+ "38": "I-MENU.VATYN",
148
+ "39": "I-MENU.ETC",
149
+ "40": "I-MENU.SUB_NM",
150
+ "41": "I-MENU.SUB_UNITPRICE",
151
+ "42": "I-MENU.SUB_CNT",
152
+ "43": "I-MENU.SUB_PRICE",
153
+ "44": "I-MENU.SUB_ETC",
154
+ "45": "I-VOID_MENU.NM",
155
+ "46": "I-VOID_MENU.PRICE",
156
+ "47": "I-SUB_TOTAL.SUBTOTAL_PRICE",
157
+ "48": "I-SUB_TOTAL.DISCOUNT_PRICE",
158
+ "49": "I-SUB_TOTAL.SERVICE_PRICE",
159
+ "50": "I-SUB_TOTAL.OTHERSVC_PRICE",
160
+ "51": "I-SUB_TOTAL.TAX_PRICE",
161
+ "52": "I-SUB_TOTAL.ETC",
162
+ "53": "I-TOTAL.TOTAL_PRICE",
163
+ "54": "I-TOTAL.TOTAL_ETC",
164
+ "55": "I-TOTAL.CASHPRICE",
165
+ "56": "I-TOTAL.CHANGEPRICE",
166
+ "57": "I-TOTAL.CREDITCARDPRICE",
167
+ "58": "I-TOTAL.EMONEYPRICE",
168
+ "59": "I-TOTAL.MENUTYPE_CNT",
169
+ "60": "I-TOTAL.MENUQTY_CNT"
170
+ },
171
+ "image_feature_pool_shape": [
172
+ 7,
173
+ 7,
174
+ 256
175
+ ],
176
+ "initializer_range": 0.02,
177
+ "intermediate_size": 3072,
178
+ "label2id": {
179
+ "B-MENU.CNT": 4,
180
+ "B-MENU.DISCOUNTPRICE": 5,
181
+ "B-MENU.ETC": 9,
182
+ "B-MENU.ITEMSUBTOTAL": 7,
183
+ "B-MENU.NM": 1,
184
+ "B-MENU.NUM": 2,
185
+ "B-MENU.PRICE": 6,
186
+ "B-MENU.SUB_CNT": 12,
187
+ "B-MENU.SUB_ETC": 14,
188
+ "B-MENU.SUB_NM": 10,
189
+ "B-MENU.SUB_PRICE": 13,
190
+ "B-MENU.SUB_UNITPRICE": 11,
191
+ "B-MENU.UNITPRICE": 3,
192
+ "B-MENU.VATYN": 8,
193
+ "B-SUB_TOTAL.DISCOUNT_PRICE": 18,
194
+ "B-SUB_TOTAL.ETC": 22,
195
+ "B-SUB_TOTAL.OTHERSVC_PRICE": 20,
196
+ "B-SUB_TOTAL.SERVICE_PRICE": 19,
197
+ "B-SUB_TOTAL.SUBTOTAL_PRICE": 17,
198
+ "B-SUB_TOTAL.TAX_PRICE": 21,
199
+ "B-TOTAL.CASHPRICE": 25,
200
+ "B-TOTAL.CHANGEPRICE": 26,
201
+ "B-TOTAL.CREDITCARDPRICE": 27,
202
+ "B-TOTAL.EMONEYPRICE": 28,
203
+ "B-TOTAL.MENUQTY_CNT": 30,
204
+ "B-TOTAL.MENUTYPE_CNT": 29,
205
+ "B-TOTAL.TOTAL_ETC": 24,
206
+ "B-TOTAL.TOTAL_PRICE": 23,
207
+ "B-VOID_MENU.NM": 15,
208
+ "B-VOID_MENU.PRICE": 16,
209
+ "I-MENU.CNT": 34,
210
+ "I-MENU.DISCOUNTPRICE": 35,
211
+ "I-MENU.ETC": 39,
212
+ "I-MENU.ITEMSUBTOTAL": 37,
213
+ "I-MENU.NM": 31,
214
+ "I-MENU.NUM": 32,
215
+ "I-MENU.PRICE": 36,
216
+ "I-MENU.SUB_CNT": 42,
217
+ "I-MENU.SUB_ETC": 44,
218
+ "I-MENU.SUB_NM": 40,
219
+ "I-MENU.SUB_PRICE": 43,
220
+ "I-MENU.SUB_UNITPRICE": 41,
221
+ "I-MENU.UNITPRICE": 33,
222
+ "I-MENU.VATYN": 38,
223
+ "I-SUB_TOTAL.DISCOUNT_PRICE": 48,
224
+ "I-SUB_TOTAL.ETC": 52,
225
+ "I-SUB_TOTAL.OTHERSVC_PRICE": 50,
226
+ "I-SUB_TOTAL.SERVICE_PRICE": 49,
227
+ "I-SUB_TOTAL.SUBTOTAL_PRICE": 47,
228
+ "I-SUB_TOTAL.TAX_PRICE": 51,
229
+ "I-TOTAL.CASHPRICE": 55,
230
+ "I-TOTAL.CHANGEPRICE": 56,
231
+ "I-TOTAL.CREDITCARDPRICE": 57,
232
+ "I-TOTAL.EMONEYPRICE": 58,
233
+ "I-TOTAL.MENUQTY_CNT": 60,
234
+ "I-TOTAL.MENUTYPE_CNT": 59,
235
+ "I-TOTAL.TOTAL_ETC": 54,
236
+ "I-TOTAL.TOTAL_PRICE": 53,
237
+ "I-VOID_MENU.NM": 45,
238
+ "I-VOID_MENU.PRICE": 46,
239
+ "O": 0
240
+ },
241
+ "layer_norm_eps": 1e-12,
242
+ "max_2d_position_embeddings": 1024,
243
+ "max_position_embeddings": 512,
244
+ "max_rel_2d_pos": 256,
245
+ "max_rel_pos": 128,
246
+ "model_type": "layoutlmv2",
247
+ "num_attention_heads": 12,
248
+ "num_hidden_layers": 12,
249
+ "output_past": true,
250
+ "pad_token_id": 0,
251
+ "rel_2d_pos_bins": 64,
252
+ "rel_pos_bins": 32,
253
+ "shape_size": 128,
254
+ "torch_dtype": "float32",
255
+ "transformers_version": "4.21.2",
256
+ "type_vocab_size": 2,
257
+ "vocab_size": 30522
258
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:638c3b7395721b46f01984503bea944934d99b8f9d2a2e7f2fd8ea6bbfd25dba
3
+ size 802392235
runs/Aug27_03-58-29_fd420a345125/1661572916.4287753/events.out.tfevents.1661572916.fd420a345125.73.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a6720e81e61401039434022cd794686bfad26a9b6611ab5a7cc6b383c95acab6
3
+ size 5483
runs/Aug27_03-58-29_fd420a345125/events.out.tfevents.1661572916.fd420a345125.73.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:730e90a31f7f065f97a29b98d8d7854f4a2014982018c0595d6bce60f0302e86
3
+ size 9594
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e8c1dd5bafa004bf478498c0b14e0e5e987587aa992adab9b69d48f9a2a09615
3
+ size 3375