-
Notifications
You must be signed in to change notification settings - Fork 4
/
default_examples.json
36 lines (36 loc) · 974 Bytes
/
default_examples.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
[
{
"question": "Total penalty count?",
"column_name": "Penalties (P+P+S+S)",
"table_name": "Biathlon World Championships 2013",
"output_type": "int",
"example_outputs": ["12", "3"],
"mapping": {
"1 (0+0+0+1)": "1",
"10 (5+3+2+0)": "10",
"6 (2+2+2+0)": "6"
}
},
{
"question": "Is the time less than a week?",
"column_name": "Length of use",
"table_name": "Crest Whitestrips",
"output_type": "bool",
"example_outputs": ["t", "f"],
"mapping": {
"14 days": "f",
"10 days": "f",
"daily": "t",
"2 hours": "t"
}
},
{
"question": "Basketball team?",
"mapping": {
"Lakers": "t",
"Nuggets": "t",
"Dodgers": "f",
"Mets": "f"
}
}
]