forked from faizan1041/Simple-Currency-Converter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtraining_data.json
155 lines (155 loc) · 3.07 KB
/
training_data.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"rasa_nlu_data": {
"common_examples": [
{
"text": "hey",
"intent": "greet",
"entities": []
},
{
"text": "hello",
"intent": "greet",
"entities": []
},
{
"text": "hi",
"intent": "greet",
"entities": []
},
{
"text": "good morning",
"intent": "greet",
"entities": []
},
{
"text": "good evening",
"intent": "greet",
"entities": []
},
{
"text": "hey there",
"intent": "greet",
"entities": []
},
{
"text": "thanks!",
"intent": "thankyou",
"entities": []
},
{
"text": "thank you",
"intent": "thankyou",
"entities": []
},
{
"text": "thx",
"intent": "thankyou",
"entities": []
},
{
"text": "thanks very much",
"intent": "thankyou",
"entities": []
},
{
"text": "convert 60 usd to pkr",
"intent": "convert",
"entities": [
{
"start": 18,
"end": 21,
"value": "pkr",
"entity": "to"
},
{
"start": 11,
"end": 14,
"value": "usd",
"entity": "from"
},
{
"start": 8,
"end": 10,
"value": "60",
"entity": "amount"
}
]
},
{
"text": "convert 100 AUD to INR",
"intent": "convert",
"entities": [
{
"start": 8,
"end": 11,
"value": "100",
"entity": "amount"
},
{
"start": 12,
"end": 15,
"value": "AUD",
"entity": "from"
},
{
"start": 19,
"end": 22,
"value": "INR",
"entity": "to"
}
]
},
{
"text": "how about 150 EUR to USD",
"intent": "convert",
"entities": [
{
"start": 10,
"end": 13,
"value": "150",
"entity": "amount"
},
{
"start": 14,
"end": 17,
"value": "EUR",
"entity": "from"
},
{
"start": 21,
"end": 24,
"value": "USD",
"entity": "to"
}
]
},
{
"text": "what is the rate for 60 EUR to INR",
"intent": "convert",
"entities": [
{
"start": 21,
"end": 23,
"value": "60",
"entity": "amount"
},
{
"start": 24,
"end": 27,
"value": "EUR",
"entity": "from"
},
{
"start": 31,
"end": 34,
"value": "INR",
"entity": "to"
}
]
}
],
"regex_features": [],
"lookup_tables": [],
"entity_synonyms": []
}
}