Upload config
Browse files- config.json +73 -0
config.json
ADDED
@@ -0,0 +1,73 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "joaobarroca/distilbert-base-uncased-finetuned-massive-intent-detection-english",
|
3 |
+
"activation": "gelu",
|
4 |
+
"architectures": [
|
5 |
+
"DistilBertForSequenceClassification"
|
6 |
+
],
|
7 |
+
"attention_dropout": 0.1,
|
8 |
+
"dim": 768,
|
9 |
+
"dropout": 0.1,
|
10 |
+
"hidden_dim": 3072,
|
11 |
+
"id2label": {
|
12 |
+
"0": "others",
|
13 |
+
"1": "places near me",
|
14 |
+
"2": "send whatsapp message",
|
15 |
+
"3": "greet and hello hi kind of things, general check in",
|
16 |
+
"4": "play games",
|
17 |
+
"5": "tell me news",
|
18 |
+
"6": "covid cases",
|
19 |
+
"7": "tell me about",
|
20 |
+
"8": "volume control",
|
21 |
+
"9": "open website",
|
22 |
+
"10": "play on youtube",
|
23 |
+
"11": "tell me joke",
|
24 |
+
"12": "send email",
|
25 |
+
"13": "goodbye",
|
26 |
+
"14": "take screenshot",
|
27 |
+
"15": "download youtube video",
|
28 |
+
"16": "asking weather",
|
29 |
+
"17": "asking date",
|
30 |
+
"18": "asking time",
|
31 |
+
"19": "i am bored",
|
32 |
+
"20": "click photo",
|
33 |
+
"21": "what can you do"
|
34 |
+
},
|
35 |
+
"initializer_range": 0.02,
|
36 |
+
"label2id": {
|
37 |
+
"asking date": 17,
|
38 |
+
"asking time": 18,
|
39 |
+
"asking weather": 16,
|
40 |
+
"click photo": 20,
|
41 |
+
"covid cases": 6,
|
42 |
+
"download youtube video": 15,
|
43 |
+
"goodbye": 13,
|
44 |
+
"greet and hello hi kind of things, general check in": 3,
|
45 |
+
"i am bored": 19,
|
46 |
+
"open website": 9,
|
47 |
+
"others": 0,
|
48 |
+
"places near me": 1,
|
49 |
+
"play games": 4,
|
50 |
+
"play on youtube": 10,
|
51 |
+
"send email": 12,
|
52 |
+
"send whatsapp message": 2,
|
53 |
+
"take screenshot": 14,
|
54 |
+
"tell me about": 7,
|
55 |
+
"tell me joke": 11,
|
56 |
+
"tell me news": 5,
|
57 |
+
"volume control": 8,
|
58 |
+
"what can you do": 21
|
59 |
+
},
|
60 |
+
"max_position_embeddings": 512,
|
61 |
+
"model_type": "distilbert",
|
62 |
+
"n_heads": 12,
|
63 |
+
"n_layers": 6,
|
64 |
+
"pad_token_id": 0,
|
65 |
+
"problem_type": "single_label_classification",
|
66 |
+
"qa_dropout": 0.1,
|
67 |
+
"seq_classif_dropout": 0.2,
|
68 |
+
"sinusoidal_pos_embds": false,
|
69 |
+
"tie_weights_": true,
|
70 |
+
"torch_dtype": "float32",
|
71 |
+
"transformers_version": "4.26.0",
|
72 |
+
"vocab_size": 30522
|
73 |
+
}
|