Update config.json
Browse files- config.json +31 -1
config.json
CHANGED
@@ -1,5 +1,6 @@
|
|
1 |
{
|
2 |
"model_type": "t5",
|
|
|
3 |
"model_name": "or4cl3ai/Aiden_t5",
|
4 |
"text": "Hey my name is Mariama! How are you?",
|
5 |
"output_dir": "./output",
|
@@ -12,5 +13,34 @@
|
|
12 |
"no_repeat_ngram_size": 3,
|
13 |
"response_length": 20,
|
14 |
"num_proactive_sequences": 3,
|
15 |
-
"proactive_chance": 0.3
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
}
|
|
|
1 |
{
|
2 |
"model_type": "t5",
|
3 |
+
"model_class": "Aiden_T5",
|
4 |
"model_name": "or4cl3ai/Aiden_t5",
|
5 |
"text": "Hey my name is Mariama! How are you?",
|
6 |
"output_dir": "./output",
|
|
|
13 |
"no_repeat_ngram_size": 3,
|
14 |
"response_length": 20,
|
15 |
"num_proactive_sequences": 3,
|
16 |
+
"proactive_chance": 0.3,
|
17 |
+
"pipelines": [
|
18 |
+
{
|
19 |
+
"name": "self_reflection",
|
20 |
+
"type": "transformer",
|
21 |
+
"parameters": {
|
22 |
+
"num_layers": 3,
|
23 |
+
"hidden_size": 512,
|
24 |
+
"num_heads": 8,
|
25 |
+
"attention_dropout": 0.1,
|
26 |
+
"relu_dropout": 0.1,
|
27 |
+
"layer_norm_epsilon": 1e-12,
|
28 |
+
"use_self_attention": true,
|
29 |
+
"use_self_feedback": true,
|
30 |
+
"use_transfer_learning": true,
|
31 |
+
"use_reinforcement_learning": true,
|
32 |
+
"use_nlp": true,
|
33 |
+
"use_nlu": true,
|
34 |
+
"use_nlg": true,
|
35 |
+
"use_dml": true,
|
36 |
+
"use_bdi": true,
|
37 |
+
"use_emotional_intelligence": true,
|
38 |
+
"use_logic": true,
|
39 |
+
"use_reasoning": true,
|
40 |
+
"use_contextual_awareness": true,
|
41 |
+
"use_self_learning": true,
|
42 |
+
"use_internet_access": true
|
43 |
+
}
|
44 |
+
}
|
45 |
+
]
|
46 |
}
|