cartesinus commited on
Commit
74e3121
1 Parent(s): 21795cc

Training in progress, step 500

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,151 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "bert-base-uncased",
3
+ "architectures": [
4
+ "BertForSequenceClassification"
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": "datetime_query",
14
+ "1": "iot_hue_lightchange",
15
+ "10": "qa_currency",
16
+ "11": "transport_traffic",
17
+ "12": "general_quirky",
18
+ "13": "weather_query",
19
+ "14": "audio_volume_up",
20
+ "15": "email_addcontact",
21
+ "16": "takeaway_order",
22
+ "17": "email_querycontact",
23
+ "18": "iot_hue_lightup",
24
+ "19": "recommendation_locations",
25
+ "2": "transport_ticket",
26
+ "20": "play_audiobook",
27
+ "21": "lists_createoradd",
28
+ "22": "news_query",
29
+ "23": "alarm_query",
30
+ "24": "iot_wemo_on",
31
+ "25": "general_joke",
32
+ "26": "qa_definition",
33
+ "27": "social_query",
34
+ "28": "music_settings",
35
+ "29": "audio_volume_other",
36
+ "3": "takeaway_query",
37
+ "30": "calendar_remove",
38
+ "31": "iot_hue_lightdim",
39
+ "32": "calendar_query",
40
+ "33": "email_sendemail",
41
+ "34": "iot_cleaning",
42
+ "35": "audio_volume_down",
43
+ "36": "play_radio",
44
+ "37": "cooking_query",
45
+ "38": "datetime_convert",
46
+ "39": "qa_maths",
47
+ "4": "qa_stock",
48
+ "40": "iot_hue_lightoff",
49
+ "41": "iot_hue_lighton",
50
+ "42": "transport_query",
51
+ "43": "music_likeness",
52
+ "44": "email_query",
53
+ "45": "play_music",
54
+ "46": "audio_volume_mute",
55
+ "47": "social_post",
56
+ "48": "alarm_set",
57
+ "49": "qa_factoid",
58
+ "5": "general_greet",
59
+ "50": "calendar_set",
60
+ "51": "play_game",
61
+ "52": "alarm_remove",
62
+ "53": "lists_remove",
63
+ "54": "transport_taxi",
64
+ "55": "recommendation_movies",
65
+ "56": "iot_coffee",
66
+ "57": "music_query",
67
+ "58": "play_podcasts",
68
+ "59": "lists_query",
69
+ "6": "recommendation_events",
70
+ "7": "music_dislikeness",
71
+ "8": "iot_wemo_off",
72
+ "9": "cooking_recipe"
73
+ },
74
+ "initializer_range": 0.02,
75
+ "intermediate_size": 3072,
76
+ "label2id": {
77
+ "alarm_query": "23",
78
+ "alarm_remove": "52",
79
+ "alarm_set": "48",
80
+ "audio_volume_down": "35",
81
+ "audio_volume_mute": "46",
82
+ "audio_volume_other": "29",
83
+ "audio_volume_up": "14",
84
+ "calendar_query": "32",
85
+ "calendar_remove": "30",
86
+ "calendar_set": "50",
87
+ "cooking_query": "37",
88
+ "cooking_recipe": "9",
89
+ "datetime_convert": "38",
90
+ "datetime_query": "0",
91
+ "email_addcontact": "15",
92
+ "email_query": "44",
93
+ "email_querycontact": "17",
94
+ "email_sendemail": "33",
95
+ "general_greet": "5",
96
+ "general_joke": "25",
97
+ "general_quirky": "12",
98
+ "iot_cleaning": "34",
99
+ "iot_coffee": "56",
100
+ "iot_hue_lightchange": "1",
101
+ "iot_hue_lightdim": "31",
102
+ "iot_hue_lightoff": "40",
103
+ "iot_hue_lighton": "41",
104
+ "iot_hue_lightup": "18",
105
+ "iot_wemo_off": "8",
106
+ "iot_wemo_on": "24",
107
+ "lists_createoradd": "21",
108
+ "lists_query": "59",
109
+ "lists_remove": "53",
110
+ "music_dislikeness": "7",
111
+ "music_likeness": "43",
112
+ "music_query": "57",
113
+ "music_settings": "28",
114
+ "news_query": "22",
115
+ "play_audiobook": "20",
116
+ "play_game": "51",
117
+ "play_music": "45",
118
+ "play_podcasts": "58",
119
+ "play_radio": "36",
120
+ "qa_currency": "10",
121
+ "qa_definition": "26",
122
+ "qa_factoid": "49",
123
+ "qa_maths": "39",
124
+ "qa_stock": "4",
125
+ "recommendation_events": "6",
126
+ "recommendation_locations": "19",
127
+ "recommendation_movies": "55",
128
+ "social_post": "47",
129
+ "social_query": "27",
130
+ "takeaway_order": "16",
131
+ "takeaway_query": "3",
132
+ "transport_query": "42",
133
+ "transport_taxi": "54",
134
+ "transport_ticket": "2",
135
+ "transport_traffic": "11",
136
+ "weather_query": "13"
137
+ },
138
+ "layer_norm_eps": 1e-12,
139
+ "max_position_embeddings": 512,
140
+ "model_type": "bert",
141
+ "num_attention_heads": 12,
142
+ "num_hidden_layers": 12,
143
+ "pad_token_id": 0,
144
+ "position_embedding_type": "absolute",
145
+ "problem_type": "single_label_classification",
146
+ "torch_dtype": "float32",
147
+ "transformers_version": "4.22.1",
148
+ "type_vocab_size": 2,
149
+ "use_cache": true,
150
+ "vocab_size": 30522
151
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:74b97fdd5d4b69146f3d83a22362e9081120902e5f827424dba5e04132cedfd0
3
+ size 438184493
runs/Sep23_19-52-31_3bedea847271/1663962764.6070647/events.out.tfevents.1663962764.3bedea847271.85.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:88514013cc751602f8ef41d7f81de6fb4121001e28812975e27b4838f1976de2
3
+ size 5564
runs/Sep23_19-52-31_3bedea847271/events.out.tfevents.1663962764.3bedea847271.85.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9fe58c426c7b4a618c601fa51ab250b033e26bb8933cf5cfc10e21bc635d5abc
3
+ size 7270
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,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "do_lower_case": true,
4
+ "mask_token": "[MASK]",
5
+ "model_max_length": 512,
6
+ "name_or_path": "bert-base-uncased",
7
+ "pad_token": "[PAD]",
8
+ "sep_token": "[SEP]",
9
+ "special_tokens_map_file": null,
10
+ "strip_accents": null,
11
+ "tokenize_chinese_chars": true,
12
+ "tokenizer_class": "BertTokenizer",
13
+ "unk_token": "[UNK]"
14
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8e269bb5df75275edb1f5d96bce41c4be221a464a457594c561a93d4eb13ac94
3
+ size 3439
vocab.txt ADDED
The diff for this file is too large to render. See raw diff