pbeyens commited on
Commit
0a613fc
1 Parent(s): 3fda57e

Training in progress, step 200

Browse files
.githooks/post-checkout ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ #!/bin/sh
2
+ command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting .git/hooks/post-checkout.\n"; exit 2; }
3
+ git lfs post-checkout "$@"
.githooks/post-commit ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ #!/bin/sh
2
+ command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting .git/hooks/post-commit.\n"; exit 2; }
3
+ git lfs post-commit "$@"
.githooks/post-merge ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ #!/bin/sh
2
+ command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting .git/hooks/post-merge.\n"; exit 2; }
3
+ git lfs post-merge "$@"
.githooks/pre-push ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ #!/bin/sh
2
+ command -v git-lfs >/dev/null 2>&1 || { echo >&2 "\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting .git/hooks/pre-push.\n"; exit 2; }
3
+ git lfs pre-push "$@"
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,233 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "SCUT-DLVCLab/lilt-roberta-en-base",
3
+ "architectures": [
4
+ "LiltForTokenClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "bos_token_id": 0,
8
+ "channel_shrink_ratio": 4,
9
+ "classifier_dropout": null,
10
+ "eos_token_id": 2,
11
+ "hidden_act": "gelu",
12
+ "hidden_dropout_prob": 0.1,
13
+ "hidden_size": 768,
14
+ "id2label": {
15
+ "0": "O",
16
+ "1": "I-number",
17
+ "2": "I-date_text",
18
+ "3": "I-date_value",
19
+ "4": "I-time_text",
20
+ "5": "I-time_value",
21
+ "6": "I-datetime",
22
+ "7": "I-customer_text",
23
+ "8": "I-customer_value",
24
+ "9": "I-helped_by_text",
25
+ "10": "I-helped_by_value",
26
+ "11": "I-heading",
27
+ "12": "I-barcode",
28
+ "13": "I-items.header",
29
+ "14": "I-unused10",
30
+ "15": "I-unused9",
31
+ "16": "I-tax.header",
32
+ "17": "I-tax.description",
33
+ "18": "I-tax.price",
34
+ "19": "I-tax.price_excl",
35
+ "20": "I-tax.price_incl",
36
+ "21": "I-unused8",
37
+ "22": "I-unused7",
38
+ "23": "I-unused6",
39
+ "24": "I-unused5",
40
+ "25": "I-unused4",
41
+ "26": "I-unused3",
42
+ "27": "I-unused2",
43
+ "28": "I-unused1",
44
+ "29": "I-etc",
45
+ "30": "I-store.logo",
46
+ "31": "I-store.name",
47
+ "32": "I-store.address",
48
+ "33": "I-store.phone",
49
+ "34": "I-store.email",
50
+ "35": "I-store.website",
51
+ "36": "I-store.tax_id",
52
+ "37": "I-store.slogan",
53
+ "38": "I-store.unused1",
54
+ "39": "I-store.etc",
55
+ "40": "I-item.quantity",
56
+ "41": "I-item.description",
57
+ "42": "I-item.unit_price",
58
+ "43": "I-item.price",
59
+ "44": "I-item.id",
60
+ "45": "I-item.discount_description",
61
+ "46": "I-item.discount_price",
62
+ "47": "I-item.unused2",
63
+ "48": "I-item.unused1",
64
+ "49": "I-item.etc",
65
+ "50": "I-sub_item.quantity",
66
+ "51": "I-sub_item.description",
67
+ "52": "I-sub_item.unit_price",
68
+ "53": "I-sub_item.price",
69
+ "54": "I-sub_item.id",
70
+ "55": "I-sub.item.discount_description",
71
+ "56": "I-sub_item.discount_price",
72
+ "57": "I-sub_item.unused2",
73
+ "58": "I-sub_item.unused1",
74
+ "59": "I-sub_item.etc",
75
+ "60": "I-sub_total.text",
76
+ "61": "I-sub_total.price",
77
+ "62": "I-sub_total.discount_text",
78
+ "63": "I-sub_total.discount_price",
79
+ "64": "I-sub_total.discount_item_text",
80
+ "65": "I-sub_total.discount_item_price",
81
+ "66": "I-sub_total.tax_text",
82
+ "67": "I-sub_total.tax_price",
83
+ "68": "I-sub_total.tax_excl_text",
84
+ "69": "I-sub_total.tax_excl_price",
85
+ "70": "I-sub_total.tax_incl_text",
86
+ "71": "I-sub_total.tax_incl_price",
87
+ "72": "I-sub_total.service_text",
88
+ "73": "I-sub_total.service_price",
89
+ "74": "I-sub_total.item_rows_text",
90
+ "75": "I-sub_total.item_rows_value",
91
+ "76": "I-sub_total.quantity_text",
92
+ "77": "I-sub_total.quantity_value",
93
+ "78": "I-sub_total.etc_text",
94
+ "79": "I-sub_total.etc_price",
95
+ "80": "I-total.text",
96
+ "81": "I-total.price",
97
+ "82": "I-total.rounded_text",
98
+ "83": "I-total.rounded_price",
99
+ "84": "I-total.unused4",
100
+ "85": "I-total.unused3",
101
+ "86": "I-total.unused2",
102
+ "87": "I-total.unused1",
103
+ "88": "I-total.etc_text",
104
+ "89": "I-total.etc_price",
105
+ "90": "I-payment.cash_text",
106
+ "91": "I-payment.cash_price",
107
+ "92": "I-payment.change_text",
108
+ "93": "I-payment.change_price",
109
+ "94": "I-payment.other_text",
110
+ "95": "I-payment.other_price",
111
+ "96": "I-payment.details_total_text",
112
+ "97": "I-payment.details_total_price",
113
+ "98": "I-payment.etc_text",
114
+ "99": "I-payment.etc_price"
115
+ },
116
+ "initializer_range": 0.02,
117
+ "intermediate_size": 3072,
118
+ "label2id": {
119
+ "I-barcode": 12,
120
+ "I-customer_text": 7,
121
+ "I-customer_value": 8,
122
+ "I-date_text": 2,
123
+ "I-date_value": 3,
124
+ "I-datetime": 6,
125
+ "I-etc": 29,
126
+ "I-heading": 11,
127
+ "I-helped_by_text": 9,
128
+ "I-helped_by_value": 10,
129
+ "I-item.description": 41,
130
+ "I-item.discount_description": 45,
131
+ "I-item.discount_price": 46,
132
+ "I-item.etc": 49,
133
+ "I-item.id": 44,
134
+ "I-item.price": 43,
135
+ "I-item.quantity": 40,
136
+ "I-item.unit_price": 42,
137
+ "I-item.unused1": 48,
138
+ "I-item.unused2": 47,
139
+ "I-items.header": 13,
140
+ "I-number": 1,
141
+ "I-payment.cash_price": 91,
142
+ "I-payment.cash_text": 90,
143
+ "I-payment.change_price": 93,
144
+ "I-payment.change_text": 92,
145
+ "I-payment.details_total_price": 97,
146
+ "I-payment.details_total_text": 96,
147
+ "I-payment.etc_price": 99,
148
+ "I-payment.etc_text": 98,
149
+ "I-payment.other_price": 95,
150
+ "I-payment.other_text": 94,
151
+ "I-store.address": 32,
152
+ "I-store.email": 34,
153
+ "I-store.etc": 39,
154
+ "I-store.logo": 30,
155
+ "I-store.name": 31,
156
+ "I-store.phone": 33,
157
+ "I-store.slogan": 37,
158
+ "I-store.tax_id": 36,
159
+ "I-store.unused1": 38,
160
+ "I-store.website": 35,
161
+ "I-sub.item.discount_description": 55,
162
+ "I-sub_item.description": 51,
163
+ "I-sub_item.discount_price": 56,
164
+ "I-sub_item.etc": 59,
165
+ "I-sub_item.id": 54,
166
+ "I-sub_item.price": 53,
167
+ "I-sub_item.quantity": 50,
168
+ "I-sub_item.unit_price": 52,
169
+ "I-sub_item.unused1": 58,
170
+ "I-sub_item.unused2": 57,
171
+ "I-sub_total.discount_item_price": 65,
172
+ "I-sub_total.discount_item_text": 64,
173
+ "I-sub_total.discount_price": 63,
174
+ "I-sub_total.discount_text": 62,
175
+ "I-sub_total.etc_price": 79,
176
+ "I-sub_total.etc_text": 78,
177
+ "I-sub_total.item_rows_text": 74,
178
+ "I-sub_total.item_rows_value": 75,
179
+ "I-sub_total.price": 61,
180
+ "I-sub_total.quantity_text": 76,
181
+ "I-sub_total.quantity_value": 77,
182
+ "I-sub_total.service_price": 73,
183
+ "I-sub_total.service_text": 72,
184
+ "I-sub_total.tax_excl_price": 69,
185
+ "I-sub_total.tax_excl_text": 68,
186
+ "I-sub_total.tax_incl_price": 71,
187
+ "I-sub_total.tax_incl_text": 70,
188
+ "I-sub_total.tax_price": 67,
189
+ "I-sub_total.tax_text": 66,
190
+ "I-sub_total.text": 60,
191
+ "I-tax.description": 17,
192
+ "I-tax.header": 16,
193
+ "I-tax.price": 18,
194
+ "I-tax.price_excl": 19,
195
+ "I-tax.price_incl": 20,
196
+ "I-time_text": 4,
197
+ "I-time_value": 5,
198
+ "I-total.etc_price": 89,
199
+ "I-total.etc_text": 88,
200
+ "I-total.price": 81,
201
+ "I-total.rounded_price": 83,
202
+ "I-total.rounded_text": 82,
203
+ "I-total.text": 80,
204
+ "I-total.unused1": 87,
205
+ "I-total.unused2": 86,
206
+ "I-total.unused3": 85,
207
+ "I-total.unused4": 84,
208
+ "I-unused1": 28,
209
+ "I-unused10": 14,
210
+ "I-unused2": 27,
211
+ "I-unused3": 26,
212
+ "I-unused4": 25,
213
+ "I-unused5": 24,
214
+ "I-unused6": 23,
215
+ "I-unused7": 22,
216
+ "I-unused8": 21,
217
+ "I-unused9": 15,
218
+ "O": 0
219
+ },
220
+ "layer_norm_eps": 1e-05,
221
+ "max_2d_position_embeddings": 1024,
222
+ "max_position_embeddings": 514,
223
+ "model_type": "lilt",
224
+ "num_attention_heads": 12,
225
+ "num_hidden_layers": 12,
226
+ "pad_token_id": 1,
227
+ "position_embedding_type": "absolute",
228
+ "torch_dtype": "float32",
229
+ "transformers_version": "4.29.2",
230
+ "type_vocab_size": 1,
231
+ "use_cache": true,
232
+ "vocab_size": 50265
233
+ }
logs/1696931810.0627682/events.out.tfevents.1696931810.pc.247660.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:000f4695ab879e7ca4b375e62a895d5d257fd7c0551676581e6cec775e544e6b
3
+ size 5874
logs/events.out.tfevents.1696931810.pc.247660.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e4ae0e7bd728a0070e4d0a574e7091b6dad237818a8460b3e0c52720d3a51e50
3
+ size 10705
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6b9a8c0306380a634669a7a8006489f955d55484f5227c1d0c99ea416c16c1eb
3
+ size 521107281
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f3fd8338c99f2ecb12c15a3d2ed328e6248e4db4ae1bfcfeceb8c1bfee65e6b1
3
+ size 3963