cartesinus commited on
Commit
7cb5739
1 Parent(s): e7ee7e7

Training in progress, step 500

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
1
+ checkpoint-*/
added_tokens.json ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ {
2
+ "[MASK]": 128000
3
+ }
config.json ADDED
@@ -0,0 +1,159 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "microsoft/mdeberta-v3-base",
3
+ "architectures": [
4
+ "DebertaV2ForSequenceClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "hidden_act": "gelu",
8
+ "hidden_dropout_prob": 0.1,
9
+ "hidden_size": 768,
10
+ "id2label": {
11
+ "0": "datetime_query",
12
+ "1": "iot_hue_lightchange",
13
+ "10": "qa_currency",
14
+ "11": "transport_traffic",
15
+ "12": "general_quirky",
16
+ "13": "weather_query",
17
+ "14": "audio_volume_up",
18
+ "15": "email_addcontact",
19
+ "16": "takeaway_order",
20
+ "17": "email_querycontact",
21
+ "18": "iot_hue_lightup",
22
+ "19": "recommendation_locations",
23
+ "2": "transport_ticket",
24
+ "20": "play_audiobook",
25
+ "21": "lists_createoradd",
26
+ "22": "news_query",
27
+ "23": "alarm_query",
28
+ "24": "iot_wemo_on",
29
+ "25": "general_joke",
30
+ "26": "qa_definition",
31
+ "27": "social_query",
32
+ "28": "music_settings",
33
+ "29": "audio_volume_other",
34
+ "3": "takeaway_query",
35
+ "30": "calendar_remove",
36
+ "31": "iot_hue_lightdim",
37
+ "32": "calendar_query",
38
+ "33": "email_sendemail",
39
+ "34": "iot_cleaning",
40
+ "35": "audio_volume_down",
41
+ "36": "play_radio",
42
+ "37": "cooking_query",
43
+ "38": "datetime_convert",
44
+ "39": "qa_maths",
45
+ "4": "qa_stock",
46
+ "40": "iot_hue_lightoff",
47
+ "41": "iot_hue_lighton",
48
+ "42": "transport_query",
49
+ "43": "music_likeness",
50
+ "44": "email_query",
51
+ "45": "play_music",
52
+ "46": "audio_volume_mute",
53
+ "47": "social_post",
54
+ "48": "alarm_set",
55
+ "49": "qa_factoid",
56
+ "5": "general_greet",
57
+ "50": "calendar_set",
58
+ "51": "play_game",
59
+ "52": "alarm_remove",
60
+ "53": "lists_remove",
61
+ "54": "transport_taxi",
62
+ "55": "recommendation_movies",
63
+ "56": "iot_coffee",
64
+ "57": "music_query",
65
+ "58": "play_podcasts",
66
+ "59": "lists_query",
67
+ "6": "recommendation_events",
68
+ "7": "music_dislikeness",
69
+ "8": "iot_wemo_off",
70
+ "9": "cooking_recipe"
71
+ },
72
+ "initializer_range": 0.02,
73
+ "intermediate_size": 3072,
74
+ "label2id": {
75
+ "alarm_query": "23",
76
+ "alarm_remove": "52",
77
+ "alarm_set": "48",
78
+ "audio_volume_down": "35",
79
+ "audio_volume_mute": "46",
80
+ "audio_volume_other": "29",
81
+ "audio_volume_up": "14",
82
+ "calendar_query": "32",
83
+ "calendar_remove": "30",
84
+ "calendar_set": "50",
85
+ "cooking_query": "37",
86
+ "cooking_recipe": "9",
87
+ "datetime_convert": "38",
88
+ "datetime_query": "0",
89
+ "email_addcontact": "15",
90
+ "email_query": "44",
91
+ "email_querycontact": "17",
92
+ "email_sendemail": "33",
93
+ "general_greet": "5",
94
+ "general_joke": "25",
95
+ "general_quirky": "12",
96
+ "iot_cleaning": "34",
97
+ "iot_coffee": "56",
98
+ "iot_hue_lightchange": "1",
99
+ "iot_hue_lightdim": "31",
100
+ "iot_hue_lightoff": "40",
101
+ "iot_hue_lighton": "41",
102
+ "iot_hue_lightup": "18",
103
+ "iot_wemo_off": "8",
104
+ "iot_wemo_on": "24",
105
+ "lists_createoradd": "21",
106
+ "lists_query": "59",
107
+ "lists_remove": "53",
108
+ "music_dislikeness": "7",
109
+ "music_likeness": "43",
110
+ "music_query": "57",
111
+ "music_settings": "28",
112
+ "news_query": "22",
113
+ "play_audiobook": "20",
114
+ "play_game": "51",
115
+ "play_music": "45",
116
+ "play_podcasts": "58",
117
+ "play_radio": "36",
118
+ "qa_currency": "10",
119
+ "qa_definition": "26",
120
+ "qa_factoid": "49",
121
+ "qa_maths": "39",
122
+ "qa_stock": "4",
123
+ "recommendation_events": "6",
124
+ "recommendation_locations": "19",
125
+ "recommendation_movies": "55",
126
+ "social_post": "47",
127
+ "social_query": "27",
128
+ "takeaway_order": "16",
129
+ "takeaway_query": "3",
130
+ "transport_query": "42",
131
+ "transport_taxi": "54",
132
+ "transport_ticket": "2",
133
+ "transport_traffic": "11",
134
+ "weather_query": "13"
135
+ },
136
+ "layer_norm_eps": 1e-07,
137
+ "max_position_embeddings": 512,
138
+ "max_relative_positions": -1,
139
+ "model_type": "deberta-v2",
140
+ "norm_rel_ebd": "layer_norm",
141
+ "num_attention_heads": 12,
142
+ "num_hidden_layers": 12,
143
+ "pad_token_id": 0,
144
+ "pooler_dropout": 0,
145
+ "pooler_hidden_act": "gelu",
146
+ "pooler_hidden_size": 768,
147
+ "pos_att_type": [
148
+ "p2c",
149
+ "c2p"
150
+ ],
151
+ "position_biased_input": false,
152
+ "position_buckets": 256,
153
+ "relative_attention": true,
154
+ "share_att_key": true,
155
+ "torch_dtype": "float32",
156
+ "transformers_version": "4.24.0",
157
+ "type_vocab_size": 0,
158
+ "vocab_size": 251000
159
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:63c19104dd8b5357dc18a1e811691b2a218c3c9fa8b52fe14176146fa0de2b70
3
+ size 1115494123
runs/Nov23_22-57-26_cfb57eae3f97/1669244259.4253917/events.out.tfevents.1669244259.cfb57eae3f97.107.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e23e1291526bba5e303217c6eb9f9a2bb7f94a09fb2b4f1ea2cb2c752cbaed8e
3
+ size 5528
runs/Nov23_22-57-26_cfb57eae3f97/events.out.tfevents.1669244259.cfb57eae3f97.107.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5ad4637f2c7774bf2e346dd4263fe22d075e689c945ba14d8de18eaa25a27933
3
+ size 7417
special_tokens_map.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "[CLS]",
3
+ "cls_token": "[CLS]",
4
+ "eos_token": "[SEP]",
5
+ "mask_token": "[MASK]",
6
+ "pad_token": "[PAD]",
7
+ "sep_token": "[SEP]",
8
+ "unk_token": "[UNK]"
9
+ }
spm.model ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c679fbf93643d19aab7ee10c0b99e460bdbc02fedf34b92b05af343b4af586fd
3
+ size 2464616
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
tokenizer_config.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "[CLS]",
3
+ "cls_token": "[CLS]",
4
+ "do_lower_case": false,
5
+ "eos_token": "[SEP]",
6
+ "mask_token": "[MASK]",
7
+ "name_or_path": "microsoft/deberta-v3-base",
8
+ "pad_token": "[PAD]",
9
+ "sep_token": "[SEP]",
10
+ "sp_model_kwargs": {},
11
+ "special_tokens_map_file": null,
12
+ "split_by_punct": false,
13
+ "tokenizer_class": "DebertaV2Tokenizer",
14
+ "unk_token": "[UNK]",
15
+ "vocab_type": "spm"
16
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3de967f432567352fb688c1d52d45fc5944b598b033a5c49d24437ee9aedc713
3
+ size 3439