-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbabi_plus.json
executable file
·75 lines (75 loc) · 1.91 KB
/
babi_plus.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"action_limits": {
"hesitate": 2,
"correct": 2,
"correct_long_distance": 2,
"multiturn_correct": 1,
"restart": 1,
"selfcheck": 2,
"NULL": 999999,
"GLOBAL": 2
},
"action_weights": {
"hesitate": 5,
"correct": 10,
"correct_long_distance": 10,
"multiturn_correct": 0,
"restart": 2,
"selfcheck": 0,
"NULL": 30
},
"action_weight_mask": {
"background_word": {
"hesitate": 0,
"correct": 0,
"correct_long_distance": 0,
"multiturn_correct": 0,
"restart": 1,
"selfcheck": 1,
"NULL": 1
},
"slot_value": {
"hesitate": 1,
"correct": 1,
"correct_long_distance": 1,
"multiturn_correct": 1,
"restart": 1,
"selfcheck": 1,
"NULL": 1
}
},
"action_templates": {
"hesitate": ["uhm $token", "well $token"],
"correct": [
"$incorrect_value sorry $correct_value",
"$incorrect_value uhm sorry $correct_value",
"$incorrect_value oh no $correct_value",
"$incorrect_value no sorry $correct_value",
"$incorrect_value no $correct_value"
],
"correct_long_distance": [
"$incorrect_phrase sorry $correct_phrase",
"$incorrect_phrase uhm sorry $correct_phrase",
"$incorrect_phrase oh no $correct_phrase",
"$incorrect_phrase no sorry $correct_phrase",
"$incorrect_phrase no $correct_phrase"
],
"multiturn_correct": [
"oh I am really sorry $correct_value",
"sorry please can you change it to $correct_value",
"oh no no no not $incorrect_value but $correct_value please"
],
"selfcheck": [
"let me check $token",
"let me see $token",
"give me a moment $token",
"one second $token",
"please hold on let me check $token"
],
"restart": [
"$token sorry yeah $utterance_from_beginning",
"$token uhm yeah $utterance_from_beginning"
],
"NULL": []
}
}