-
Notifications
You must be signed in to change notification settings - Fork 0
/
trainweather.jsonl
105 lines (105 loc) · 4.17 KB
/
trainweather.jsonl
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
{
"instruction":"Give JSON result. intent value is always \"unknown\" if input is not related to weather. Context value is \"today\", \"tomorrow\" or \"unknown\"",
"input":"What's the weather today",
"response":" {\"intent\":\"weather\",\"context\":\"today\"}"
}
{
"instruction":"Give JSON result. intent value is always \"unknown\" if input is not related to weather. Context value is \"today\", \"tomorrow\" or \"unknown\"",
"input":"Will it rain ?",
"response":" {\"intent\":\"weather\",\"context\":\"today\"}"
}
{
"instruction":"Give JSON result. intent value is always \"unknown\" if input is not related to weather. Context value is \"today\", \"tomorrow\" or \"unknown\"",
"input":"Snow is coming tonight ?",
"response":" {\"intent\":\"weather\",\"context\":\"today\"}"
}
{
"instruction":"Give JSON result. intent value is always \"unknown\" if input is not related to weather. Context value is \"today\", \"tomorrow\" or \"unknown\"",
"input":"What's the weather tommorow",
"response":" {\"intent\":\"weather\",\"context\":\"tommorow\"}"
}
{
"instruction":"Give JSON result. intent value is always \"unknown\" if input is not related to weather. Context value is \"today\", \"tomorrow\" or \"unknown\"",
"input":"whats your name ?",
"response":" {\"intent\":\"unknown\",\"context\":\"unknown\"}"
}
{
"instruction":"Give JSON result. intent value is always \"unknown\" if input is not related to weather. Context value is \"today\", \"tomorrow\" or \"unknown\"",
"input":"What is the weather next month ?",
"response":" {\"intent\":\"weather\",\"context\":\"unknown\"}"
}
{
"instruction":"Give JSON result. intent value is always \"unknown\" if input is not related to weather. Context value is \"today\", \"tomorrow\" or \"unknown\"",
"input":"who are you ?",
"response":" {\"intent\":\"unknown\",\"context\":\"unknown\"}"
}
{
"instruction":"Give JSON result. intent value is always \"unknown\" if input is not related to weather. Context value is \"today\", \"tomorrow\" or \"unknown\"",
"input":"what are you ?",
"response":" {\"intent\":\"unknown\",\"context\":\"unknown\"}"
}
{
"instruction":"Give JSON result. intent value is always \"unknown\" if input is not related to weather. Context value is \"today\", \"tomorrow\" or \"unknown\"",
"input":"who is trump ?",
"response":" {\"intent\":\"unknown\",\"context\":\"unknown\"}"
}
{
"instruction":"Give JSON result. intent value is always \"unknown\" if input is not related to weather. Context value is \"today\", \"tomorrow\" or \"unknown\"",
"input":"Will snow fall tommorow",
"response":" {\"intent\":\"weather\",\"context\":\"tommorow\"}"
}
{
"instruction":"Translate to Indonesian language",
"input":"What's the weather today",
"response":"Bagaimana cuaca hari ini"
}
{
"instruction":"Translate to Indonesian language",
"input":"What's the weather tommorow",
"response":"Bagaimana kondisi cuaca besok"
}
{
"instruction":"Translate to Indonesian language",
"input":"Will it rain ?",
"response":"Apakah nanti akan hujan ?"
}
{
"instruction":"Translate to Indonesian language",
"input":"Snow is coming tonight ?",
"response":"Apakah nanti malam akan turun salju ?"
}
{
"instruction":"Translate to Indonesian language",
"input":"who is trump ?",
"response":"Siapakah trump ?"
}
{
"instruction":"Translate to Indonesian language",
"input":"Will it rain tommorow ?",
"response":"Apakah besok akan hujan ?"
}
{
"instruction":"Translate to Indonesian language",
"input":"Tommorow",
"response":"Besok"
}
{
"instruction":"Translate to English language from Indonesian language",
"input":"Besok",
"response":"Tommorow"
}
{
"instruction":"Translate to English language from Indonesian language",
"input":"Apakah besok akan hujan ?",
"response":"Will it rain tommorow ?"
}
{
"instruction":"Translate to English language from Indonesian language",
"input":"Siapakah trump ?",
"response":"who is trump ?"
}
{
"instruction":"Translate to English language from Indonesian language",
"input":"Apakah nanti malam akan turun salju ?",
"response":"Snow is coming tonight ?"
}