arcs-bench / tasks /readable /031 /task_readable.sql
anon
Upload tasks/ folder for end-to-end loader reproducibility
02edc38
/*
{
"qid": "031",
"task_type": "ambig",
"has_intended_resolution": true,
"language": "SQLite",
"db": "professional_basketball",
"question": "Count the number of people that have coached for Atlanta.",
"gold_ambiguity_points": [
{
"id": "A",
"phrase": "Atlanta",
"type": "finite",
"ambiguity_type": "semantic_value",
"interpretations": [
"Atlanta Hawks (tmID = 'ATL')",
"Atlanta Crackers (tmID = 'ATC')"
],
"intended_interpretation_idx": 0
}
],
"gold_intended_query_id": "GQRY-A.0",
"extra_info": {}
}
*/
----- START OF GOLD QUERY `GQRY-A.0` -----
/*
{
"id": "GQRY-A.0",
"parameter_names": [],
"parameter_values": {},
"other_exec_results": [],
"required_columns": null,
"required_sorted": false,
"extra_info": {
"ambiguity_resolution": {
"[A] Atlanta": "Atlanta Hawks (tmID = 'ATL')"
}
}
}
*/
SELECT COUNT(DISTINCT coachID) FROM coaches WHERE tmID = 'ATL';
/* EXEC RESULT
COUNT(DISTINCT coachID)
12
*/
----- END OF GOLD QUERY -----
----- START OF GOLD QUERY `GQRY-A.1` -----
/*
{
"id": "GQRY-A.1",
"parameter_names": [],
"parameter_values": {},
"other_exec_results": [],
"required_columns": null,
"required_sorted": false,
"extra_info": {
"ambiguity_resolution": {
"[A] Atlanta": "Atlanta Crackers (tmID = 'ATC')"
}
}
}
*/
SELECT COUNT(DISTINCT coachID) FROM coaches WHERE tmID = 'ATC';
/* EXEC RESULT
COUNT(DISTINCT coachID)
1
*/
----- END OF GOLD QUERY -----