Datasets:
siyue
commited on
Commit
•
db54a32
1
Parent(s):
52c9efa
label
Browse files
README.md
CHANGED
@@ -13,7 +13,7 @@ size_categories:
|
|
13 |
## SQUALL Dataset
|
14 |
To explore the utility of fine-grained, lexical-level supervision, authors introduce SQUALL, a dataset that enriches 11,276 WikiTableQuestions English-language questions with manually created SQL equivalents plus alignments between SQL and question fragments. 5-fold splits are applied to the full dataset (1 fold as dev set at each time). The subset defines which fold is selected as the validation dataset.
|
15 |
|
16 |
-
WARN: alignment data (i.e., `nl_ralign` and `align`) is not implemented.
|
17 |
|
18 |
## Source
|
19 |
Please refer to [github repo](https://github.com/tzshi/squall/) for source data.
|
|
|
13 |
## SQUALL Dataset
|
14 |
To explore the utility of fine-grained, lexical-level supervision, authors introduce SQUALL, a dataset that enriches 11,276 WikiTableQuestions English-language questions with manually created SQL equivalents plus alignments between SQL and question fragments. 5-fold splits are applied to the full dataset (1 fold as dev set at each time). The subset defines which fold is selected as the validation dataset.
|
15 |
|
16 |
+
WARN: alignment data (i.e., `nl_ralign` and `align`) is not implemented. The label of test set is unknown.
|
17 |
|
18 |
## Source
|
19 |
Please refer to [github repo](https://github.com/tzshi/squall/) for source data.
|
squall.py
CHANGED
@@ -282,8 +282,8 @@ class Squall(datasets.GeneratorBasedBuilder):
|
|
282 |
"nl_incolumns": sample["nl_incolumns"],
|
283 |
"nl_incells": sample["nl_incells"],
|
284 |
"columns_innl": sample["columns_innl"],
|
285 |
-
|
286 |
-
|
287 |
# "align": sample["align"]
|
288 |
}
|
289 |
idx += 1
|
|
|
282 |
"nl_incolumns": sample["nl_incolumns"],
|
283 |
"nl_incells": sample["nl_incells"],
|
284 |
"columns_innl": sample["columns_innl"],
|
285 |
+
"tgt": '',
|
286 |
+
"sql": [],
|
287 |
# "align": sample["align"]
|
288 |
}
|
289 |
idx += 1
|