Upload train.json
Browse files- train.json +34 -0
train.json
CHANGED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[
|
2 |
+
{
|
3 |
+
"text": "Give me a 4-room apartment in New York City on the 6th floor.",
|
4 |
+
"label": "SELECT * FROM table WHERE room = 4 AND floor = 6 AND city = 'New York'"
|
5 |
+
},
|
6 |
+
{
|
7 |
+
"text": "I'm looking for a 2-bedroom apartment in San Francisco with a balcony.",
|
8 |
+
"label": "SELECT * FROM table WHERE room = 2 AND city = 'San Francisco'"
|
9 |
+
},
|
10 |
+
{
|
11 |
+
"text": "I need a studio apartment in London with a washer and dryer in unit.",
|
12 |
+
"label": "SELECT * FROM table WHERE room = 1 AND city = 'London'"
|
13 |
+
},
|
14 |
+
{
|
15 |
+
"text": "I'm interested in a 3-bedroom apartment in Chicago with a parking space.",
|
16 |
+
"label": "SELECT * FROM table WHERE room = 3 AND parking = 1 AND city = 'Chicago'"
|
17 |
+
},
|
18 |
+
{
|
19 |
+
"text": "I'm looking for a 1-bedroom apartment in Austin with a pet-friendly policy.",
|
20 |
+
"label": "SELECT * FROM table WHERE room = 1 AND city = 'Austin'"
|
21 |
+
},
|
22 |
+
{
|
23 |
+
"text": "I need a 2-bedroom apartment in Seattle with a view.",
|
24 |
+
"label": "SELECT * FROM table WHERE room = 2 AND city = 'Seattle'"
|
25 |
+
},
|
26 |
+
{
|
27 |
+
"text": "I'm interested in a 3-bedroom apartment in Denver with a backyard.",
|
28 |
+
"label": "SELECT * FROM table WHERE room = 3 AND city = 'Denver'"
|
29 |
+
},
|
30 |
+
{
|
31 |
+
"text": "I'm looking for a 1-bedroom apartment in Boston with a gym in building.",
|
32 |
+
"label": "SELECT * FROM table WHERE room = 1 AND city = 'Boston'"
|
33 |
+
}
|
34 |
+
]
|