P3ps commited on
Commit
cac7d55
·
1 Parent(s): c42f9e6

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,192 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "bert-base-cased",
3
+ "architectures": [
4
+ "BertForTokenClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "classifier_dropout": null,
8
+ "gradient_checkpointing": false,
9
+ "hidden_act": "gelu",
10
+ "hidden_dropout_prob": 0.1,
11
+ "hidden_size": 768,
12
+ "id2label": {
13
+ "0": "O",
14
+ "1": "B-academicjournal",
15
+ "2": "I-academicjournal",
16
+ "3": "B-album",
17
+ "4": "I-album",
18
+ "5": "B-algorithm",
19
+ "6": "I-algorithm",
20
+ "7": "B-astronomicalobject",
21
+ "8": "I-astronomicalobject",
22
+ "9": "B-award",
23
+ "10": "I-award",
24
+ "11": "B-band",
25
+ "12": "I-band",
26
+ "13": "B-book",
27
+ "14": "I-book",
28
+ "15": "B-chemicalcompound",
29
+ "16": "I-chemicalcompound",
30
+ "17": "B-chemicalelement",
31
+ "18": "I-chemicalelement",
32
+ "19": "B-conference",
33
+ "20": "I-conference",
34
+ "21": "B-country",
35
+ "22": "I-country",
36
+ "23": "B-discipline",
37
+ "24": "I-discipline",
38
+ "25": "B-election",
39
+ "26": "I-election",
40
+ "27": "B-enzyme",
41
+ "28": "I-enzyme",
42
+ "29": "B-event",
43
+ "30": "I-event",
44
+ "31": "B-field",
45
+ "32": "I-field",
46
+ "33": "B-literarygenre",
47
+ "34": "I-literarygenre",
48
+ "35": "B-location",
49
+ "36": "I-location",
50
+ "37": "B-magazine",
51
+ "38": "I-magazine",
52
+ "39": "B-metrics",
53
+ "40": "I-metrics",
54
+ "41": "B-misc",
55
+ "42": "I-misc",
56
+ "43": "B-musicalartist",
57
+ "44": "I-musicalartist",
58
+ "45": "B-musicalinstrument",
59
+ "46": "I-musicalinstrument",
60
+ "47": "B-musicgenre",
61
+ "48": "I-musicgenre",
62
+ "49": "B-organisation",
63
+ "50": "I-organisation",
64
+ "51": "B-person",
65
+ "52": "I-person",
66
+ "53": "B-poem",
67
+ "54": "I-poem",
68
+ "55": "B-politicalparty",
69
+ "56": "I-politicalparty",
70
+ "57": "B-politician",
71
+ "58": "I-politician",
72
+ "59": "B-product",
73
+ "60": "I-product",
74
+ "61": "B-programlang",
75
+ "62": "I-programlang",
76
+ "63": "B-protein",
77
+ "64": "I-protein",
78
+ "65": "B-researcher",
79
+ "66": "I-researcher",
80
+ "67": "B-scientist",
81
+ "68": "I-scientist",
82
+ "69": "B-song",
83
+ "70": "I-song",
84
+ "71": "B-task",
85
+ "72": "I-task",
86
+ "73": "B-theory",
87
+ "74": "I-theory",
88
+ "75": "B-university",
89
+ "76": "I-university",
90
+ "77": "B-writer",
91
+ "78": "I-writer",
92
+ "79": "B-jobs",
93
+ "80": "I-jobs"
94
+ },
95
+ "initializer_range": 0.02,
96
+ "intermediate_size": 3072,
97
+ "label2id": {
98
+ "B-academicjournal": 1,
99
+ "B-album": 3,
100
+ "B-algorithm": 5,
101
+ "B-astronomicalobject": 7,
102
+ "B-award": 9,
103
+ "B-band": 11,
104
+ "B-book": 13,
105
+ "B-chemicalcompound": 15,
106
+ "B-chemicalelement": 17,
107
+ "B-conference": 19,
108
+ "B-country": 21,
109
+ "B-discipline": 23,
110
+ "B-election": 25,
111
+ "B-enzyme": 27,
112
+ "B-event": 29,
113
+ "B-field": 31,
114
+ "B-jobs": 79,
115
+ "B-literarygenre": 33,
116
+ "B-location": 35,
117
+ "B-magazine": 37,
118
+ "B-metrics": 39,
119
+ "B-misc": 41,
120
+ "B-musicalartist": 43,
121
+ "B-musicalinstrument": 45,
122
+ "B-musicgenre": 47,
123
+ "B-organisation": 49,
124
+ "B-person": 51,
125
+ "B-poem": 53,
126
+ "B-politicalparty": 55,
127
+ "B-politician": 57,
128
+ "B-product": 59,
129
+ "B-programlang": 61,
130
+ "B-protein": 63,
131
+ "B-researcher": 65,
132
+ "B-scientist": 67,
133
+ "B-song": 69,
134
+ "B-task": 71,
135
+ "B-theory": 73,
136
+ "B-university": 75,
137
+ "B-writer": 77,
138
+ "I-academicjournal": 2,
139
+ "I-album": 4,
140
+ "I-algorithm": 6,
141
+ "I-astronomicalobject": 8,
142
+ "I-award": 10,
143
+ "I-band": 12,
144
+ "I-book": 14,
145
+ "I-chemicalcompound": 16,
146
+ "I-chemicalelement": 18,
147
+ "I-conference": 20,
148
+ "I-country": 22,
149
+ "I-discipline": 24,
150
+ "I-election": 26,
151
+ "I-enzyme": 28,
152
+ "I-event": 30,
153
+ "I-field": 32,
154
+ "I-jobs": 80,
155
+ "I-literarygenre": 34,
156
+ "I-location": 36,
157
+ "I-magazine": 38,
158
+ "I-metrics": 40,
159
+ "I-misc": 42,
160
+ "I-musicalartist": 44,
161
+ "I-musicalinstrument": 46,
162
+ "I-musicgenre": 48,
163
+ "I-organisation": 50,
164
+ "I-person": 52,
165
+ "I-poem": 54,
166
+ "I-politicalparty": 56,
167
+ "I-politician": 58,
168
+ "I-product": 60,
169
+ "I-programlang": 62,
170
+ "I-protein": 64,
171
+ "I-researcher": 66,
172
+ "I-scientist": 68,
173
+ "I-song": 70,
174
+ "I-task": 72,
175
+ "I-theory": 74,
176
+ "I-university": 76,
177
+ "I-writer": 78,
178
+ "O": 0
179
+ },
180
+ "layer_norm_eps": 1e-12,
181
+ "max_position_embeddings": 512,
182
+ "model_type": "bert",
183
+ "num_attention_heads": 12,
184
+ "num_hidden_layers": 12,
185
+ "pad_token_id": 0,
186
+ "position_embedding_type": "absolute",
187
+ "torch_dtype": "float32",
188
+ "transformers_version": "4.28.0",
189
+ "type_vocab_size": 2,
190
+ "use_cache": true,
191
+ "vocab_size": 28996
192
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:690e5af68eecb50062ca2009c505350ef049a2bcbf7ef82f1d96a70b31b36e90
3
+ size 431200045
runs/Jun08_11-20-34_35f4177f2405/1686223238.7719738/events.out.tfevents.1686223238.35f4177f2405.176.5 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9734135a39a30eb7826d3e9cc1cdde6d1d166476e92b4cc4d9c9dd96bfff21ee
3
+ size 5904
runs/Jun08_11-20-34_35f4177f2405/events.out.tfevents.1686223238.35f4177f2405.176.4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c9afe586717db1d6b16be143a222c6ea543342549f43e68129e19a4133e34733
3
+ size 7966
runs/Jun08_11-31-45_35f4177f2405/1686223912.7636843/events.out.tfevents.1686223912.35f4177f2405.23220.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:62bf69be431d23d0a16beb722d96115192fa2cbd50f0adbab59f28fd4ff39213
3
+ size 5904
runs/Jun08_11-31-45_35f4177f2405/events.out.tfevents.1686223912.35f4177f2405.23220.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:94a022bbc080c3414503e69a8c294196927f5c2e075fff072c906e2522428cae
3
+ size 7966
runs/Jun08_11-42-27_35f4177f2405/1686224551.7461133/events.out.tfevents.1686224551.35f4177f2405.25516.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2f8590941db84dfce7846dbbf67ad047d3ed327c14aa3ccba74f308d49a8ef78
3
+ size 5904
runs/Jun08_11-42-27_35f4177f2405/events.out.tfevents.1686224551.35f4177f2405.25516.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:67349b0227c6a6aaf8aafc84eced236f7950050ee8424394aa939e84ef39b226
3
+ size 7847
runs/Jun08_11-44-33_35f4177f2405/1686224676.2003698/events.out.tfevents.1686224676.35f4177f2405.25516.3 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:18d8901139584dc6f90edf627b8be1cc468da1e30bb3a0b692630b83c4b90e2c
3
+ size 5904
runs/Jun08_11-44-33_35f4177f2405/events.out.tfevents.1686224676.35f4177f2405.25516.2 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5bb9d7f81f12c4eeac5edeea1898eca1fa1b36601f7aca1a8b14852c9b8d698d
3
+ size 7966
runs/Jun08_11-52-03_35f4177f2405/1686225128.0320587/events.out.tfevents.1686225128.35f4177f2405.28826.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8e343686ca72ecf570d81ac536af6c2bf371fd728e9d48cac98552b346eb91e4
3
+ size 5904
runs/Jun08_11-52-03_35f4177f2405/events.out.tfevents.1686225128.35f4177f2405.28826.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7e58baccb0a96b7c52e2cb6b9c612410ff9e5f1fc65fe278a5bee8b21f3607cd
3
+ size 9104
special_tokens_map.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "mask_token": "[MASK]",
4
+ "pad_token": "[PAD]",
5
+ "sep_token": "[SEP]",
6
+ "unk_token": "[UNK]"
7
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "clean_up_tokenization_spaces": true,
3
+ "cls_token": "[CLS]",
4
+ "do_lower_case": false,
5
+ "mask_token": "[MASK]",
6
+ "model_max_length": 512,
7
+ "pad_token": "[PAD]",
8
+ "sep_token": "[SEP]",
9
+ "strip_accents": null,
10
+ "tokenize_chinese_chars": true,
11
+ "tokenizer_class": "BertTokenizer",
12
+ "unk_token": "[UNK]"
13
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9c90f064a30b1492d45d582f359d6e8d8cf7d450d86e82d688e0c6c9ee825c19
3
+ size 3643
vocab.txt ADDED
The diff for this file is too large to render. See raw diff