cartesinus commited on
Commit
09969c2
1 Parent(s): 20a51c8

Training in progress, step 500

Browse files
.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,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": "datetime_query",
15
+ "1": "iot_hue_lightchange",
16
+ "10": "qa_currency",
17
+ "11": "transport_traffic",
18
+ "12": "general_quirky",
19
+ "13": "weather_query",
20
+ "14": "audio_volume_up",
21
+ "15": "email_addcontact",
22
+ "16": "takeaway_order",
23
+ "17": "email_querycontact",
24
+ "18": "iot_hue_lightup",
25
+ "19": "recommendation_locations",
26
+ "2": "transport_ticket",
27
+ "20": "play_audiobook",
28
+ "21": "lists_createoradd",
29
+ "22": "news_query",
30
+ "23": "alarm_query",
31
+ "24": "iot_wemo_on",
32
+ "25": "general_joke",
33
+ "26": "qa_definition",
34
+ "27": "social_query",
35
+ "28": "music_settings",
36
+ "29": "audio_volume_other",
37
+ "3": "takeaway_query",
38
+ "30": "calendar_remove",
39
+ "31": "iot_hue_lightdim",
40
+ "32": "calendar_query",
41
+ "33": "email_sendemail",
42
+ "34": "iot_cleaning",
43
+ "35": "audio_volume_down",
44
+ "36": "play_radio",
45
+ "37": "cooking_query",
46
+ "38": "datetime_convert",
47
+ "39": "qa_maths",
48
+ "4": "qa_stock",
49
+ "40": "iot_hue_lightoff",
50
+ "41": "iot_hue_lighton",
51
+ "42": "transport_query",
52
+ "43": "music_likeness",
53
+ "44": "email_query",
54
+ "45": "play_music",
55
+ "46": "audio_volume_mute",
56
+ "47": "social_post",
57
+ "48": "alarm_set",
58
+ "49": "qa_factoid",
59
+ "5": "general_greet",
60
+ "50": "calendar_set",
61
+ "51": "play_game",
62
+ "52": "alarm_remove",
63
+ "53": "lists_remove",
64
+ "54": "transport_taxi",
65
+ "55": "recommendation_movies",
66
+ "56": "iot_coffee",
67
+ "57": "music_query",
68
+ "58": "play_podcasts",
69
+ "59": "lists_query",
70
+ "6": "recommendation_events",
71
+ "7": "music_dislikeness",
72
+ "8": "iot_wemo_off",
73
+ "9": "cooking_recipe"
74
+ },
75
+ "initializer_range": 0.02,
76
+ "intermediate_size": 3072,
77
+ "label2id": {
78
+ "alarm_query": "23",
79
+ "alarm_remove": "52",
80
+ "alarm_set": "48",
81
+ "audio_volume_down": "35",
82
+ "audio_volume_mute": "46",
83
+ "audio_volume_other": "29",
84
+ "audio_volume_up": "14",
85
+ "calendar_query": "32",
86
+ "calendar_remove": "30",
87
+ "calendar_set": "50",
88
+ "cooking_query": "37",
89
+ "cooking_recipe": "9",
90
+ "datetime_convert": "38",
91
+ "datetime_query": "0",
92
+ "email_addcontact": "15",
93
+ "email_query": "44",
94
+ "email_querycontact": "17",
95
+ "email_sendemail": "33",
96
+ "general_greet": "5",
97
+ "general_joke": "25",
98
+ "general_quirky": "12",
99
+ "iot_cleaning": "34",
100
+ "iot_coffee": "56",
101
+ "iot_hue_lightchange": "1",
102
+ "iot_hue_lightdim": "31",
103
+ "iot_hue_lightoff": "40",
104
+ "iot_hue_lighton": "41",
105
+ "iot_hue_lightup": "18",
106
+ "iot_wemo_off": "8",
107
+ "iot_wemo_on": "24",
108
+ "lists_createoradd": "21",
109
+ "lists_query": "59",
110
+ "lists_remove": "53",
111
+ "music_dislikeness": "7",
112
+ "music_likeness": "43",
113
+ "music_query": "57",
114
+ "music_settings": "28",
115
+ "news_query": "22",
116
+ "play_audiobook": "20",
117
+ "play_game": "51",
118
+ "play_music": "45",
119
+ "play_podcasts": "58",
120
+ "play_radio": "36",
121
+ "qa_currency": "10",
122
+ "qa_definition": "26",
123
+ "qa_factoid": "49",
124
+ "qa_maths": "39",
125
+ "qa_stock": "4",
126
+ "recommendation_events": "6",
127
+ "recommendation_locations": "19",
128
+ "recommendation_movies": "55",
129
+ "social_post": "47",
130
+ "social_query": "27",
131
+ "takeaway_order": "16",
132
+ "takeaway_query": "3",
133
+ "transport_query": "42",
134
+ "transport_taxi": "54",
135
+ "transport_ticket": "2",
136
+ "transport_traffic": "11",
137
+ "weather_query": "13"
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.22.1",
150
+ "type_vocab_size": 1,
151
+ "use_cache": true,
152
+ "vocab_size": 250002
153
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b9d8f42bc7df4eb2994696f2300977b9528295d53733511694b5fb36f008ecdf
3
+ size 1112427949
runs/Sep23_10-09-26_688912b50d71/1663927772.4425707/events.out.tfevents.1663927772.688912b50d71.140.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d48bb6edd77a29c0dc19b4d69ff11013ab023c238fe5af4f30e9d28ecc7fda19
3
+ size 5543
runs/Sep23_10-09-26_688912b50d71/events.out.tfevents.1663927772.688912b50d71.140.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bb7e34b0851f9184c68e50f2d8db44742bd37619106eafba59cdb3330bb61a99
3
+ size 7292
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:affcfb1f45c4b14a70a6589c3d153b430ed4309e5a6613a88dab64d5a923a5d6
3
+ size 17082925
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:50d9972e5632e189d3b1e0333bb471790fd613ccaf04b40c4549b6a19508ab9b
3
+ size 3375