PiceTRP commited on
Commit
85454da
1 Parent(s): 6a9e88b

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-uncased",
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-album",
15
+ "2": "I-album",
16
+ "3": "B-artist",
17
+ "4": "I-artist",
18
+ "5": "B-best_rating",
19
+ "6": "I-best_rating",
20
+ "7": "B-city",
21
+ "8": "I-city",
22
+ "9": "B-condition_description",
23
+ "10": "I-condition_description",
24
+ "11": "B-condition_temperature",
25
+ "12": "I-condition_temperature",
26
+ "13": "B-country",
27
+ "14": "I-country",
28
+ "15": "B-cuisine",
29
+ "16": "I-cuisine",
30
+ "17": "B-current_location",
31
+ "18": "I-current_location",
32
+ "19": "B-entity_name",
33
+ "20": "I-entity_name",
34
+ "21": "B-facility",
35
+ "22": "I-facility",
36
+ "23": "B-genre",
37
+ "24": "I-genre",
38
+ "25": "B-geographic_poi",
39
+ "26": "I-geographic_poi",
40
+ "27": "B-location_name",
41
+ "28": "I-location_name",
42
+ "29": "B-movie_name",
43
+ "30": "I-movie_name",
44
+ "31": "B-movie_type",
45
+ "32": "I-movie_type",
46
+ "33": "B-music_item",
47
+ "34": "I-music_item",
48
+ "35": "B-object_location_type",
49
+ "36": "I-object_location_type",
50
+ "37": "B-object_name",
51
+ "38": "I-object_name",
52
+ "39": "B-object_part_of_series_type",
53
+ "40": "I-object_part_of_series_type",
54
+ "41": "B-object_select",
55
+ "42": "I-object_select",
56
+ "43": "B-object_type",
57
+ "44": "I-object_type",
58
+ "45": "B-party_size_description",
59
+ "46": "I-party_size_description",
60
+ "47": "B-party_size_number",
61
+ "48": "I-party_size_number",
62
+ "49": "B-playlist",
63
+ "50": "I-playlist",
64
+ "51": "B-playlist_owner",
65
+ "52": "I-playlist_owner",
66
+ "53": "B-poi",
67
+ "54": "I-poi",
68
+ "55": "B-rating_unit",
69
+ "56": "I-rating_unit",
70
+ "57": "B-rating_value",
71
+ "58": "I-rating_value",
72
+ "59": "B-restaurant_name",
73
+ "60": "I-restaurant_name",
74
+ "61": "B-restaurant_type",
75
+ "62": "I-restaurant_type",
76
+ "63": "B-served_dish",
77
+ "64": "I-served_dish",
78
+ "65": "B-service",
79
+ "66": "I-service",
80
+ "67": "B-sort",
81
+ "68": "I-sort",
82
+ "69": "B-spatial_relation",
83
+ "70": "I-spatial_relation",
84
+ "71": "B-state",
85
+ "72": "I-state",
86
+ "73": "B-timeRange",
87
+ "74": "I-timeRange",
88
+ "75": "B-track",
89
+ "76": "I-track",
90
+ "77": "B-year",
91
+ "78": "I-year"
92
+ },
93
+ "initializer_range": 0.02,
94
+ "intermediate_size": 3072,
95
+ "label2id": {
96
+ "B-album": 1,
97
+ "B-artist": 3,
98
+ "B-best_rating": 5,
99
+ "B-city": 7,
100
+ "B-condition_description": 9,
101
+ "B-condition_temperature": 11,
102
+ "B-country": 13,
103
+ "B-cuisine": 15,
104
+ "B-current_location": 17,
105
+ "B-entity_name": 19,
106
+ "B-facility": 21,
107
+ "B-genre": 23,
108
+ "B-geographic_poi": 25,
109
+ "B-location_name": 27,
110
+ "B-movie_name": 29,
111
+ "B-movie_type": 31,
112
+ "B-music_item": 33,
113
+ "B-object_location_type": 35,
114
+ "B-object_name": 37,
115
+ "B-object_part_of_series_type": 39,
116
+ "B-object_select": 41,
117
+ "B-object_type": 43,
118
+ "B-party_size_description": 45,
119
+ "B-party_size_number": 47,
120
+ "B-playlist": 49,
121
+ "B-playlist_owner": 51,
122
+ "B-poi": 53,
123
+ "B-rating_unit": 55,
124
+ "B-rating_value": 57,
125
+ "B-restaurant_name": 59,
126
+ "B-restaurant_type": 61,
127
+ "B-served_dish": 63,
128
+ "B-service": 65,
129
+ "B-sort": 67,
130
+ "B-spatial_relation": 69,
131
+ "B-state": 71,
132
+ "B-timeRange": 73,
133
+ "B-track": 75,
134
+ "B-year": 77,
135
+ "I-album": 2,
136
+ "I-artist": 4,
137
+ "I-best_rating": 6,
138
+ "I-city": 8,
139
+ "I-condition_description": 10,
140
+ "I-condition_temperature": 12,
141
+ "I-country": 14,
142
+ "I-cuisine": 16,
143
+ "I-current_location": 18,
144
+ "I-entity_name": 20,
145
+ "I-facility": 22,
146
+ "I-genre": 24,
147
+ "I-geographic_poi": 26,
148
+ "I-location_name": 28,
149
+ "I-movie_name": 30,
150
+ "I-movie_type": 32,
151
+ "I-music_item": 34,
152
+ "I-object_location_type": 36,
153
+ "I-object_name": 38,
154
+ "I-object_part_of_series_type": 40,
155
+ "I-object_select": 42,
156
+ "I-object_type": 44,
157
+ "I-party_size_description": 46,
158
+ "I-party_size_number": 48,
159
+ "I-playlist": 50,
160
+ "I-playlist_owner": 52,
161
+ "I-poi": 54,
162
+ "I-rating_unit": 56,
163
+ "I-rating_value": 58,
164
+ "I-restaurant_name": 60,
165
+ "I-restaurant_type": 62,
166
+ "I-served_dish": 64,
167
+ "I-service": 66,
168
+ "I-sort": 68,
169
+ "I-spatial_relation": 70,
170
+ "I-state": 72,
171
+ "I-timeRange": 74,
172
+ "I-track": 76,
173
+ "I-year": 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.27.1",
185
+ "type_vocab_size": 2,
186
+ "use_cache": true,
187
+ "vocab_size": 30522
188
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7859f93c0299037cad6ef6c72b7edf2e94afe202d68a71d82d73a09ac4b17c77
3
+ size 435881773
runs/Mar18_22-58-22_bd3d260a9733/1679180315.992044/events.out.tfevents.1679180315.bd3d260a9733.140.3 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b086b04c4904eea46524db992321a2569aff712369d4b028bebfc504591b362d
3
+ size 5814
runs/Mar18_22-58-22_bd3d260a9733/events.out.tfevents.1679180315.bd3d260a9733.140.2 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:71242959309ff48d7cdbeddef416c4d8306fbff30d40518b583bbb743bc0b4a6
3
+ size 8723
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
+ "cls_token": "[CLS]",
3
+ "do_lower_case": true,
4
+ "mask_token": "[MASK]",
5
+ "model_max_length": 512,
6
+ "pad_token": "[PAD]",
7
+ "sep_token": "[SEP]",
8
+ "special_tokens_map_file": null,
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:77f09bde714f22e8eae28ebcaec5320237a97c646fd40bab8a4a33a97edcb8ea
3
+ size 3579
vocab.txt ADDED
The diff for this file is too large to render. See raw diff