P3ps commited on
Commit
9a006b3
1 Parent(s): c0278c8

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,188 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ },
93
+ "initializer_range": 0.02,
94
+ "intermediate_size": 3072,
95
+ "label2id": {
96
+ "B-academicjournal": 1,
97
+ "B-album": 3,
98
+ "B-algorithm": 5,
99
+ "B-astronomicalobject": 7,
100
+ "B-award": 9,
101
+ "B-band": 11,
102
+ "B-book": 13,
103
+ "B-chemicalcompound": 15,
104
+ "B-chemicalelement": 17,
105
+ "B-conference": 19,
106
+ "B-country": 21,
107
+ "B-discipline": 23,
108
+ "B-election": 25,
109
+ "B-enzyme": 27,
110
+ "B-event": 29,
111
+ "B-field": 31,
112
+ "B-literarygenre": 33,
113
+ "B-location": 35,
114
+ "B-magazine": 37,
115
+ "B-metrics": 39,
116
+ "B-misc": 41,
117
+ "B-musicalartist": 43,
118
+ "B-musicalinstrument": 45,
119
+ "B-musicgenre": 47,
120
+ "B-organisation": 49,
121
+ "B-person": 51,
122
+ "B-poem": 53,
123
+ "B-politicalparty": 55,
124
+ "B-politician": 57,
125
+ "B-product": 59,
126
+ "B-programlang": 61,
127
+ "B-protein": 63,
128
+ "B-researcher": 65,
129
+ "B-scientist": 67,
130
+ "B-song": 69,
131
+ "B-task": 71,
132
+ "B-theory": 73,
133
+ "B-university": 75,
134
+ "B-writer": 77,
135
+ "I-academicjournal": 2,
136
+ "I-album": 4,
137
+ "I-algorithm": 6,
138
+ "I-astronomicalobject": 8,
139
+ "I-award": 10,
140
+ "I-band": 12,
141
+ "I-book": 14,
142
+ "I-chemicalcompound": 16,
143
+ "I-chemicalelement": 18,
144
+ "I-conference": 20,
145
+ "I-country": 22,
146
+ "I-discipline": 24,
147
+ "I-election": 26,
148
+ "I-enzyme": 28,
149
+ "I-event": 30,
150
+ "I-field": 32,
151
+ "I-literarygenre": 34,
152
+ "I-location": 36,
153
+ "I-magazine": 38,
154
+ "I-metrics": 40,
155
+ "I-misc": 42,
156
+ "I-musicalartist": 44,
157
+ "I-musicalinstrument": 46,
158
+ "I-musicgenre": 48,
159
+ "I-organisation": 50,
160
+ "I-person": 52,
161
+ "I-poem": 54,
162
+ "I-politicalparty": 56,
163
+ "I-politician": 58,
164
+ "I-product": 60,
165
+ "I-programlang": 62,
166
+ "I-protein": 64,
167
+ "I-researcher": 66,
168
+ "I-scientist": 68,
169
+ "I-song": 70,
170
+ "I-task": 72,
171
+ "I-theory": 74,
172
+ "I-university": 76,
173
+ "I-writer": 78,
174
+ "O": 0
175
+ },
176
+ "layer_norm_eps": 1e-12,
177
+ "max_position_embeddings": 512,
178
+ "model_type": "bert",
179
+ "num_attention_heads": 12,
180
+ "num_hidden_layers": 12,
181
+ "pad_token_id": 0,
182
+ "position_embedding_type": "absolute",
183
+ "torch_dtype": "float32",
184
+ "transformers_version": "4.28.0",
185
+ "type_vocab_size": 2,
186
+ "use_cache": true,
187
+ "vocab_size": 28996
188
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:177e4a36bcfddc982860a3b86894041ae51a0689e502c020811b951a69ad50dd
3
+ size 431193901
runs/May24_10-48-08_5be8fae521e6/1684925302.1442788/events.out.tfevents.1684925302.5be8fae521e6.614.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:381a18f876c507b0d0e743b5adb60571a4942f494ed34438fc692a98c0749029
3
+ size 5895
runs/May24_10-48-08_5be8fae521e6/events.out.tfevents.1684925302.5be8fae521e6.614.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:626d1d4088769a841649cbeae7d73dc76d8d8aca8cac6773681290171ecd4416
3
+ size 9019
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:337098b2b111ba81945057f8f192b93cfee34b68f09a1e9f61a1144225500d25
3
+ size 3643
vocab.txt ADDED
The diff for this file is too large to render. See raw diff