cartesinus
commited on
Commit
•
4ec2b7e
1
Parent(s):
8053a3e
Training in progress, step 500
Browse files- .gitattributes +1 -0
- .gitignore +1 -0
- config.json +248 -0
- pytorch_model.bin +3 -0
- runs/Oct01_09-14-07_806148a5a485/1664615658.5720694/events.out.tfevents.1664615658.806148a5a485.94.1 +3 -0
- runs/Oct01_09-14-07_806148a5a485/events.out.tfevents.1664615658.806148a5a485.94.0 +3 -0
- special_tokens_map.json +15 -0
- tokenizer.json +3 -0
- tokenizer_config.json +20 -0
- training_args.bin +3 -0
.gitattributes
CHANGED
@@ -30,3 +30,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
30 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
31 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
32 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
30 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
31 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
32 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
33 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,248 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "xlm-roberta-base",
|
3 |
+
"architectures": [
|
4 |
+
"XLMRobertaForTokenClassification"
|
5 |
+
],
|
6 |
+
"attention_probs_dropout_prob": 0.1,
|
7 |
+
"bos_token_id": 0,
|
8 |
+
"classifier_dropout": null,
|
9 |
+
"eos_token_id": 2,
|
10 |
+
"hidden_act": "gelu",
|
11 |
+
"hidden_dropout_prob": 0.1,
|
12 |
+
"hidden_size": 768,
|
13 |
+
"id2label": {
|
14 |
+
"0": "O",
|
15 |
+
"1": "B-time",
|
16 |
+
"10": "I-artist_name",
|
17 |
+
"100": "I-definition_word",
|
18 |
+
"101": "B-email_folder",
|
19 |
+
"102": "I-currency_name",
|
20 |
+
"103": "B-game_type",
|
21 |
+
"104": "I-personal_info",
|
22 |
+
"105": "B-email_address",
|
23 |
+
"106": "I-email_address",
|
24 |
+
"107": "I-transport_type",
|
25 |
+
"11": "B-media_type",
|
26 |
+
"12": "B-place_name",
|
27 |
+
"13": "B-time_zone",
|
28 |
+
"14": "I-time_zone",
|
29 |
+
"15": "B-order_type",
|
30 |
+
"16": "B-food_type",
|
31 |
+
"17": "B-news_topic",
|
32 |
+
"18": "B-song_name",
|
33 |
+
"19": "B-music_genre",
|
34 |
+
"2": "I-time",
|
35 |
+
"20": "B-device_type",
|
36 |
+
"21": "I-device_type",
|
37 |
+
"22": "B-meal_type",
|
38 |
+
"23": "B-business_name",
|
39 |
+
"24": "B-general_frequency",
|
40 |
+
"25": "I-general_frequency",
|
41 |
+
"26": "B-weather_descriptor",
|
42 |
+
"27": "I-date",
|
43 |
+
"28": "I-media_type",
|
44 |
+
"29": "B-player_setting",
|
45 |
+
"3": "B-date",
|
46 |
+
"30": "B-joke_type",
|
47 |
+
"31": "I-song_name",
|
48 |
+
"32": "B-timeofday",
|
49 |
+
"33": "B-event_name",
|
50 |
+
"34": "I-news_topic",
|
51 |
+
"35": "I-business_name",
|
52 |
+
"36": "I-place_name",
|
53 |
+
"37": "B-business_type",
|
54 |
+
"38": "I-order_type",
|
55 |
+
"39": "B-playlist_name",
|
56 |
+
"4": "B-color_type",
|
57 |
+
"40": "I-playlist_name",
|
58 |
+
"41": "B-music_descriptor",
|
59 |
+
"42": "I-music_descriptor",
|
60 |
+
"43": "I-house_place",
|
61 |
+
"44": "I-timeofday",
|
62 |
+
"45": "B-person",
|
63 |
+
"46": "I-person",
|
64 |
+
"47": "I-weather_descriptor",
|
65 |
+
"48": "I-player_setting",
|
66 |
+
"49": "B-alarm_type",
|
67 |
+
"5": "I-color_type",
|
68 |
+
"50": "I-alarm_type",
|
69 |
+
"51": "B-app_name",
|
70 |
+
"52": "B-coffee_type",
|
71 |
+
"53": "I-food_type",
|
72 |
+
"54": "I-music_genre",
|
73 |
+
"55": "I-joke_type",
|
74 |
+
"56": "I-coffee_type",
|
75 |
+
"57": "I-business_type",
|
76 |
+
"58": "I-event_name",
|
77 |
+
"59": "B-relation",
|
78 |
+
"6": "B-house_place",
|
79 |
+
"60": "B-movie_name",
|
80 |
+
"61": "I-movie_name",
|
81 |
+
"62": "B-drink_type",
|
82 |
+
"63": "I-drink_type",
|
83 |
+
"64": "B-transport_type",
|
84 |
+
"65": "B-music_album",
|
85 |
+
"66": "I-music_album",
|
86 |
+
"67": "I-app_name",
|
87 |
+
"68": "I-relation",
|
88 |
+
"69": "B-personal_info",
|
89 |
+
"7": "B-change_amount",
|
90 |
+
"70": "B-list_name",
|
91 |
+
"71": "I-list_name",
|
92 |
+
"72": "B-sport_type",
|
93 |
+
"73": "I-sport_type",
|
94 |
+
"74": "B-radio_name",
|
95 |
+
"75": "I-radio_name",
|
96 |
+
"76": "B-podcast_name",
|
97 |
+
"77": "B-audiobook_name",
|
98 |
+
"78": "I-audiobook_name",
|
99 |
+
"79": "B-audiobook_author",
|
100 |
+
"8": "I-change_amount",
|
101 |
+
"80": "I-audiobook_author",
|
102 |
+
"81": "B-cooking_type",
|
103 |
+
"82": "B-ingredient",
|
104 |
+
"83": "I-ingredient",
|
105 |
+
"84": "I-meal_type",
|
106 |
+
"85": "B-game_name",
|
107 |
+
"86": "I-game_name",
|
108 |
+
"87": "B-podcast_descriptor",
|
109 |
+
"88": "I-podcast_descriptor",
|
110 |
+
"89": "I-podcast_name",
|
111 |
+
"9": "B-artist_name",
|
112 |
+
"90": "B-movie_type",
|
113 |
+
"91": "I-movie_type",
|
114 |
+
"92": "B-transport_agency",
|
115 |
+
"93": "B-transport_descriptor",
|
116 |
+
"94": "B-transport_name",
|
117 |
+
"95": "I-transport_descriptor",
|
118 |
+
"96": "I-transport_name",
|
119 |
+
"97": "I-transport_agency",
|
120 |
+
"98": "B-currency_name",
|
121 |
+
"99": "B-definition_word"
|
122 |
+
},
|
123 |
+
"initializer_range": 0.02,
|
124 |
+
"intermediate_size": 3072,
|
125 |
+
"label2id": {
|
126 |
+
"B-alarm_type": "49",
|
127 |
+
"B-app_name": "51",
|
128 |
+
"B-artist_name": "9",
|
129 |
+
"B-audiobook_author": "79",
|
130 |
+
"B-audiobook_name": "77",
|
131 |
+
"B-business_name": "23",
|
132 |
+
"B-business_type": "37",
|
133 |
+
"B-change_amount": "7",
|
134 |
+
"B-coffee_type": "52",
|
135 |
+
"B-color_type": "4",
|
136 |
+
"B-cooking_type": "81",
|
137 |
+
"B-currency_name": "98",
|
138 |
+
"B-date": "3",
|
139 |
+
"B-definition_word": "99",
|
140 |
+
"B-device_type": "20",
|
141 |
+
"B-drink_type": "62",
|
142 |
+
"B-email_address": "105",
|
143 |
+
"B-email_folder": "101",
|
144 |
+
"B-event_name": "33",
|
145 |
+
"B-food_type": "16",
|
146 |
+
"B-game_name": "85",
|
147 |
+
"B-game_type": "103",
|
148 |
+
"B-general_frequency": "24",
|
149 |
+
"B-house_place": "6",
|
150 |
+
"B-ingredient": "82",
|
151 |
+
"B-joke_type": "30",
|
152 |
+
"B-list_name": "70",
|
153 |
+
"B-meal_type": "22",
|
154 |
+
"B-media_type": "11",
|
155 |
+
"B-movie_name": "60",
|
156 |
+
"B-movie_type": "90",
|
157 |
+
"B-music_album": "65",
|
158 |
+
"B-music_descriptor": "41",
|
159 |
+
"B-music_genre": "19",
|
160 |
+
"B-news_topic": "17",
|
161 |
+
"B-order_type": "15",
|
162 |
+
"B-person": "45",
|
163 |
+
"B-personal_info": "69",
|
164 |
+
"B-place_name": "12",
|
165 |
+
"B-player_setting": "29",
|
166 |
+
"B-playlist_name": "39",
|
167 |
+
"B-podcast_descriptor": "87",
|
168 |
+
"B-podcast_name": "76",
|
169 |
+
"B-radio_name": "74",
|
170 |
+
"B-relation": "59",
|
171 |
+
"B-song_name": "18",
|
172 |
+
"B-sport_type": "72",
|
173 |
+
"B-time": "1",
|
174 |
+
"B-time_zone": "13",
|
175 |
+
"B-timeofday": "32",
|
176 |
+
"B-transport_agency": "92",
|
177 |
+
"B-transport_descriptor": "93",
|
178 |
+
"B-transport_name": "94",
|
179 |
+
"B-transport_type": "64",
|
180 |
+
"B-weather_descriptor": "26",
|
181 |
+
"I-alarm_type": "50",
|
182 |
+
"I-app_name": "67",
|
183 |
+
"I-artist_name": "10",
|
184 |
+
"I-audiobook_author": "80",
|
185 |
+
"I-audiobook_name": "78",
|
186 |
+
"I-business_name": "35",
|
187 |
+
"I-business_type": "57",
|
188 |
+
"I-change_amount": "8",
|
189 |
+
"I-coffee_type": "56",
|
190 |
+
"I-color_type": "5",
|
191 |
+
"I-currency_name": "102",
|
192 |
+
"I-date": "27",
|
193 |
+
"I-definition_word": "100",
|
194 |
+
"I-device_type": "21",
|
195 |
+
"I-drink_type": "63",
|
196 |
+
"I-email_address": "106",
|
197 |
+
"I-event_name": "58",
|
198 |
+
"I-food_type": "53",
|
199 |
+
"I-game_name": "86",
|
200 |
+
"I-general_frequency": "25",
|
201 |
+
"I-house_place": "43",
|
202 |
+
"I-ingredient": "83",
|
203 |
+
"I-joke_type": "55",
|
204 |
+
"I-list_name": "71",
|
205 |
+
"I-meal_type": "84",
|
206 |
+
"I-media_type": "28",
|
207 |
+
"I-movie_name": "61",
|
208 |
+
"I-movie_type": "91",
|
209 |
+
"I-music_album": "66",
|
210 |
+
"I-music_descriptor": "42",
|
211 |
+
"I-music_genre": "54",
|
212 |
+
"I-news_topic": "34",
|
213 |
+
"I-order_type": "38",
|
214 |
+
"I-person": "46",
|
215 |
+
"I-personal_info": "104",
|
216 |
+
"I-place_name": "36",
|
217 |
+
"I-player_setting": "48",
|
218 |
+
"I-playlist_name": "40",
|
219 |
+
"I-podcast_descriptor": "88",
|
220 |
+
"I-podcast_name": "89",
|
221 |
+
"I-radio_name": "75",
|
222 |
+
"I-relation": "68",
|
223 |
+
"I-song_name": "31",
|
224 |
+
"I-sport_type": "73",
|
225 |
+
"I-time": "2",
|
226 |
+
"I-time_zone": "14",
|
227 |
+
"I-timeofday": "44",
|
228 |
+
"I-transport_agency": "97",
|
229 |
+
"I-transport_descriptor": "95",
|
230 |
+
"I-transport_name": "96",
|
231 |
+
"I-transport_type": "107",
|
232 |
+
"I-weather_descriptor": "47",
|
233 |
+
"O": "0"
|
234 |
+
},
|
235 |
+
"layer_norm_eps": 1e-05,
|
236 |
+
"max_position_embeddings": 514,
|
237 |
+
"model_type": "xlm-roberta",
|
238 |
+
"num_attention_heads": 12,
|
239 |
+
"num_hidden_layers": 12,
|
240 |
+
"output_past": true,
|
241 |
+
"pad_token_id": 1,
|
242 |
+
"position_embedding_type": "absolute",
|
243 |
+
"torch_dtype": "float32",
|
244 |
+
"transformers_version": "4.22.2",
|
245 |
+
"type_vocab_size": 1,
|
246 |
+
"use_cache": true,
|
247 |
+
"vocab_size": 250002
|
248 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6c691dcfaff2a90d74db5080c7952da703529c215f928d0165be120118d50e1a
|
3 |
+
size 1110215473
|
runs/Oct01_09-14-07_806148a5a485/1664615658.5720694/events.out.tfevents.1664615658.806148a5a485.94.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b76f228678c7f0eec45eeb88b91de95d254176870187ca56c64524ec01560749
|
3 |
+
size 5537
|
runs/Oct01_09-14-07_806148a5a485/events.out.tfevents.1664615658.806148a5a485.94.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:31624ae03883d5f8bc51f938b1680e378f8047f48885f4b336a4984cb13f3853
|
3 |
+
size 9863
|
special_tokens_map.json
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bos_token": "<s>",
|
3 |
+
"cls_token": "<s>",
|
4 |
+
"eos_token": "</s>",
|
5 |
+
"mask_token": {
|
6 |
+
"content": "<mask>",
|
7 |
+
"lstrip": true,
|
8 |
+
"normalized": false,
|
9 |
+
"rstrip": false,
|
10 |
+
"single_word": false
|
11 |
+
},
|
12 |
+
"pad_token": "<pad>",
|
13 |
+
"sep_token": "</s>",
|
14 |
+
"unk_token": "<unk>"
|
15 |
+
}
|
tokenizer.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f2c509a525eb51aebb33fb59c24ee923c1d4c1db23c3ae81fe05ccf354084f7b
|
3 |
+
size 17082758
|
tokenizer_config.json
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bos_token": "<s>",
|
3 |
+
"cls_token": "<s>",
|
4 |
+
"eos_token": "</s>",
|
5 |
+
"mask_token": {
|
6 |
+
"__type": "AddedToken",
|
7 |
+
"content": "<mask>",
|
8 |
+
"lstrip": true,
|
9 |
+
"normalized": true,
|
10 |
+
"rstrip": false,
|
11 |
+
"single_word": false
|
12 |
+
},
|
13 |
+
"model_max_length": 512,
|
14 |
+
"name_or_path": "xlm-roberta-base",
|
15 |
+
"pad_token": "<pad>",
|
16 |
+
"sep_token": "</s>",
|
17 |
+
"special_tokens_map_file": null,
|
18 |
+
"tokenizer_class": "XLMRobertaTokenizer",
|
19 |
+
"unk_token": "<unk>"
|
20 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1575b6c900cc79a3dd4675863a86778d56255ec0b9f46db264d9b1a0e14a8bdf
|
3 |
+
size 3375
|