stepanom commited on
Commit
181e1db
1 Parent(s): a78ce98

Training in progress, epoch 1

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
config.json ADDED
@@ -0,0 +1,153 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "xlm-roberta-base",
3
+ "architectures": [
4
+ "XLMRobertaForSequenceClassification"
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": "alarm_set",
15
+ "1": "audio_volume_mute",
16
+ "10": "datetime_query",
17
+ "11": "datetime_convert",
18
+ "12": "takeaway_query",
19
+ "13": "alarm_remove",
20
+ "14": "alarm_query",
21
+ "15": "news_query",
22
+ "16": "music_likeness",
23
+ "17": "music_query",
24
+ "18": "iot_hue_lightup",
25
+ "19": "takeaway_order",
26
+ "2": "iot_hue_lightchange",
27
+ "20": "weather_query",
28
+ "21": "music_settings",
29
+ "22": "general_joke",
30
+ "23": "music_dislikeness",
31
+ "24": "audio_volume_other",
32
+ "25": "iot_coffee",
33
+ "26": "audio_volume_up",
34
+ "27": "iot_wemo_on",
35
+ "28": "iot_hue_lighton",
36
+ "29": "iot_wemo_off",
37
+ "3": "iot_hue_lightoff",
38
+ "30": "audio_volume_down",
39
+ "31": "qa_stock",
40
+ "32": "play_radio",
41
+ "33": "recommendation_locations",
42
+ "34": "qa_factoid",
43
+ "35": "calendar_set",
44
+ "36": "play_audiobook",
45
+ "37": "play_podcasts",
46
+ "38": "social_query",
47
+ "39": "transport_query",
48
+ "4": "iot_hue_lightdim",
49
+ "40": "email_sendemail",
50
+ "41": "recommendation_movies",
51
+ "42": "lists_query",
52
+ "43": "play_game",
53
+ "44": "transport_ticket",
54
+ "45": "recommendation_events",
55
+ "46": "email_query",
56
+ "47": "transport_traffic",
57
+ "48": "cooking_query",
58
+ "49": "qa_definition",
59
+ "5": "iot_cleaning",
60
+ "50": "calendar_remove",
61
+ "51": "lists_remove",
62
+ "52": "cooking_recipe",
63
+ "53": "email_querycontact",
64
+ "54": "lists_createoradd",
65
+ "55": "transport_taxi",
66
+ "56": "qa_maths",
67
+ "57": "social_post",
68
+ "58": "qa_currency",
69
+ "59": "email_addcontact",
70
+ "6": "calendar_query",
71
+ "7": "play_music",
72
+ "8": "general_quirky",
73
+ "9": "general_greet"
74
+ },
75
+ "initializer_range": 0.02,
76
+ "intermediate_size": 3072,
77
+ "label2id": {
78
+ "alarm_query": "14",
79
+ "alarm_remove": "13",
80
+ "alarm_set": "0",
81
+ "audio_volume_down": "30",
82
+ "audio_volume_mute": "1",
83
+ "audio_volume_other": "24",
84
+ "audio_volume_up": "26",
85
+ "calendar_query": "6",
86
+ "calendar_remove": "50",
87
+ "calendar_set": "35",
88
+ "cooking_query": "48",
89
+ "cooking_recipe": "52",
90
+ "datetime_convert": "11",
91
+ "datetime_query": "10",
92
+ "email_addcontact": "59",
93
+ "email_query": "46",
94
+ "email_querycontact": "53",
95
+ "email_sendemail": "40",
96
+ "general_greet": "9",
97
+ "general_joke": "22",
98
+ "general_quirky": "8",
99
+ "iot_cleaning": "5",
100
+ "iot_coffee": "25",
101
+ "iot_hue_lightchange": "2",
102
+ "iot_hue_lightdim": "4",
103
+ "iot_hue_lightoff": "3",
104
+ "iot_hue_lighton": "28",
105
+ "iot_hue_lightup": "18",
106
+ "iot_wemo_off": "29",
107
+ "iot_wemo_on": "27",
108
+ "lists_createoradd": "54",
109
+ "lists_query": "42",
110
+ "lists_remove": "51",
111
+ "music_dislikeness": "23",
112
+ "music_likeness": "16",
113
+ "music_query": "17",
114
+ "music_settings": "21",
115
+ "news_query": "15",
116
+ "play_audiobook": "36",
117
+ "play_game": "43",
118
+ "play_music": "7",
119
+ "play_podcasts": "37",
120
+ "play_radio": "32",
121
+ "qa_currency": "58",
122
+ "qa_definition": "49",
123
+ "qa_factoid": "34",
124
+ "qa_maths": "56",
125
+ "qa_stock": "31",
126
+ "recommendation_events": "45",
127
+ "recommendation_locations": "33",
128
+ "recommendation_movies": "41",
129
+ "social_post": "57",
130
+ "social_query": "38",
131
+ "takeaway_order": "19",
132
+ "takeaway_query": "12",
133
+ "transport_query": "39",
134
+ "transport_taxi": "55",
135
+ "transport_ticket": "44",
136
+ "transport_traffic": "47",
137
+ "weather_query": "20"
138
+ },
139
+ "layer_norm_eps": 1e-05,
140
+ "max_position_embeddings": 514,
141
+ "model_type": "xlm-roberta",
142
+ "num_attention_heads": 12,
143
+ "num_hidden_layers": 12,
144
+ "output_past": true,
145
+ "pad_token_id": 1,
146
+ "position_embedding_type": "absolute",
147
+ "problem_type": "single_label_classification",
148
+ "torch_dtype": "float32",
149
+ "transformers_version": "4.41.0",
150
+ "type_vocab_size": 1,
151
+ "use_cache": true,
152
+ "vocab_size": 250002
153
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:88ee0459b4f5fd93ec418ea3f1a14cdcc19576262b03c982495344ade6cba2c9
3
+ size 1112383416
runs/May24_09-28-14_ef1ed8895661/events.out.tfevents.1716542910.ef1ed8895661.421.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:af161615a0c9830eee7ffc5fb6bec0cbbb36af419160b8f95c1a30079c3e9006
3
+ size 9065
sentencepiece.bpe.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cfc8146abe2a0488e9e2a0c56de7952f7c11ab059eca145a0a727afce0db2865
3
+ size 5069051
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:883b037111086fd4dfebbbc9b7cee11e1517b5e0c0514879478661440f137085
3
+ size 17082987
tokenizer_config.json ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "0": {
4
+ "content": "<s>",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": true
10
+ },
11
+ "1": {
12
+ "content": "<pad>",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "2": {
20
+ "content": "</s>",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "3": {
28
+ "content": "<unk>",
29
+ "lstrip": false,
30
+ "normalized": false,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ },
35
+ "250001": {
36
+ "content": "<mask>",
37
+ "lstrip": true,
38
+ "normalized": false,
39
+ "rstrip": false,
40
+ "single_word": false,
41
+ "special": true
42
+ }
43
+ },
44
+ "bos_token": "<s>",
45
+ "clean_up_tokenization_spaces": true,
46
+ "cls_token": "<s>",
47
+ "eos_token": "</s>",
48
+ "mask_token": "<mask>",
49
+ "model_max_length": 512,
50
+ "pad_token": "<pad>",
51
+ "sep_token": "</s>",
52
+ "tokenizer_class": "XLMRobertaTokenizer",
53
+ "unk_token": "<unk>"
54
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6852d15f0d7aa33d4364a36515842082abff48163c9493437823a62ae9bfdb1d
3
+ size 5176