RealFalconsAI
commited on
Commit
•
69c9a5a
1
Parent(s):
958ac33
Upload config.json
Browse files- config.json +54 -0
config.json
ADDED
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "Falconsai/intent_classification",
|
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": "cancel order",
|
13 |
+
"1": "change order",
|
14 |
+
"2": "change shipping address",
|
15 |
+
"3": "cancellation",
|
16 |
+
"4": "check invoice",
|
17 |
+
"5": "payment methods",
|
18 |
+
"6": "refund policy",
|
19 |
+
"7": "complaint",
|
20 |
+
"8": "contact customer service",
|
21 |
+
"9": "contact human agent",
|
22 |
+
"10": "create account",
|
23 |
+
"11": "delete account",
|
24 |
+
"12": "delivery options",
|
25 |
+
"13": "delivery period",
|
26 |
+
"14": "edit account",
|
27 |
+
"15": "get invoice",
|
28 |
+
"16": "get refund",
|
29 |
+
"17": "subscription",
|
30 |
+
"18": "payment issue",
|
31 |
+
"19": "place order",
|
32 |
+
"20": "recover password",
|
33 |
+
"21": "registration problems",
|
34 |
+
"22": "review",
|
35 |
+
"23": "set up shipping address",
|
36 |
+
"24": "switch account",
|
37 |
+
"25": "track order",
|
38 |
+
"26": "track refund"
|
39 |
+
},
|
40 |
+
"initializer_range": 0.02,
|
41 |
+
"max_position_embeddings": 512,
|
42 |
+
"model_type": "distilbert",
|
43 |
+
"n_heads": 12,
|
44 |
+
"n_layers": 6,
|
45 |
+
"pad_token_id": 0,
|
46 |
+
"problem_type": "single_label_classification",
|
47 |
+
"qa_dropout": 0.1,
|
48 |
+
"seq_classif_dropout": 0.2,
|
49 |
+
"sinusoidal_pos_embds": false,
|
50 |
+
"tie_weights_": true,
|
51 |
+
"torch_dtype": "float32",
|
52 |
+
"transformers_version": "4.31.0",
|
53 |
+
"vocab_size": 30522
|
54 |
+
}
|