sudheer997 commited on
Commit
becc37e
1 Parent(s): be48378

Training in progress, step 200

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,127 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "B-vendor_name",
16
+ "1": "I-vendor_name",
17
+ "2": "B-Other",
18
+ "3": "I-Other",
19
+ "4": "B-invoice_number",
20
+ "5": "B-invoice_date",
21
+ "6": "I-invoice_date",
22
+ "7": "B-line_quantity",
23
+ "8": "B-line_amount",
24
+ "9": "B-subtotal",
25
+ "10": "B-payment_terms",
26
+ "11": "I-payment_terms",
27
+ "12": "B-due_date",
28
+ "13": "I-due_date",
29
+ "14": "B-remit_address",
30
+ "15": "I-remit_address",
31
+ "16": "B-line_item_name",
32
+ "17": "I-line_item_name",
33
+ "18": "B-total_amount",
34
+ "19": "B-currency",
35
+ "20": "B-vendor_address",
36
+ "21": "I-vendor_address",
37
+ "22": "I-subtotal",
38
+ "23": "B-line_other_item_name",
39
+ "24": "I-line_other_item_name",
40
+ "25": "B-other_charges",
41
+ "26": "I-other_charges",
42
+ "27": "B-po_number",
43
+ "28": "B-shipping_terms",
44
+ "29": "B-line_rate",
45
+ "30": "I-line_rate",
46
+ "31": "B-tax",
47
+ "32": "B-billing_address",
48
+ "33": "I-billing_address",
49
+ "34": "B-shipping_address",
50
+ "35": "I-shipping_address",
51
+ "36": "B-credits",
52
+ "37": "B-line_catlog_number",
53
+ "38": "I-line_amount",
54
+ "39": "I-tax",
55
+ "40": "I-total_amount",
56
+ "41": "B-order_date",
57
+ "42": "I-order_date",
58
+ "43": "I-line_quantity",
59
+ "44": "I-po_number",
60
+ "45": "I-invoice_number",
61
+ "46": "I-line_catlog_number"
62
+ },
63
+ "initializer_range": 0.02,
64
+ "intermediate_size": 3072,
65
+ "label2id": {
66
+ "B-Other": 2,
67
+ "B-billing_address": 32,
68
+ "B-credits": 36,
69
+ "B-currency": 19,
70
+ "B-due_date": 12,
71
+ "B-invoice_date": 5,
72
+ "B-invoice_number": 4,
73
+ "B-line_amount": 8,
74
+ "B-line_catlog_number": 37,
75
+ "B-line_item_name": 16,
76
+ "B-line_other_item_name": 23,
77
+ "B-line_quantity": 7,
78
+ "B-line_rate": 29,
79
+ "B-order_date": 41,
80
+ "B-other_charges": 25,
81
+ "B-payment_terms": 10,
82
+ "B-po_number": 27,
83
+ "B-remit_address": 14,
84
+ "B-shipping_address": 34,
85
+ "B-shipping_terms": 28,
86
+ "B-subtotal": 9,
87
+ "B-tax": 31,
88
+ "B-total_amount": 18,
89
+ "B-vendor_address": 20,
90
+ "B-vendor_name": 0,
91
+ "I-Other": 3,
92
+ "I-billing_address": 33,
93
+ "I-due_date": 13,
94
+ "I-invoice_date": 6,
95
+ "I-invoice_number": 45,
96
+ "I-line_amount": 38,
97
+ "I-line_catlog_number": 46,
98
+ "I-line_item_name": 17,
99
+ "I-line_other_item_name": 24,
100
+ "I-line_quantity": 43,
101
+ "I-line_rate": 30,
102
+ "I-order_date": 42,
103
+ "I-other_charges": 26,
104
+ "I-payment_terms": 11,
105
+ "I-po_number": 44,
106
+ "I-remit_address": 15,
107
+ "I-shipping_address": 35,
108
+ "I-subtotal": 22,
109
+ "I-tax": 39,
110
+ "I-total_amount": 40,
111
+ "I-vendor_address": 21,
112
+ "I-vendor_name": 1
113
+ },
114
+ "layer_norm_eps": 1e-05,
115
+ "max_2d_position_embeddings": 1024,
116
+ "max_position_embeddings": 514,
117
+ "model_type": "lilt",
118
+ "num_attention_heads": 12,
119
+ "num_hidden_layers": 12,
120
+ "pad_token_id": 1,
121
+ "position_embedding_type": "absolute",
122
+ "torch_dtype": "float32",
123
+ "transformers_version": "4.28.0",
124
+ "type_vocab_size": 1,
125
+ "use_cache": true,
126
+ "vocab_size": 50265
127
+ }
logs/1689617956.2551162/events.out.tfevents.1689617956.13d093979a2e.431.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d04879150ab041d39de5c37f5ee723bec2fceb2b8a0915efcb71f4e25d36fe74
3
+ size 5866
logs/events.out.tfevents.1689617956.13d093979a2e.431.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:467981e907db6595b0ec44492a804acb827d178af19bee6f0e567a2b97a63b79
3
+ size 7926
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:226c17b0d906056f454b82df67f61b191fbb77c2958c2ef5aa3f82c4aff3811f
3
+ size 520944273
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:43ad212c3dadf471a32cdb7fec4535799458dcd987bd67bafc83a5cb6e4cbb1f
3
+ size 3643