Upload wikisql_VALUE.py
Browse files- wikisql_VALUE.py +30 -0
wikisql_VALUE.py
CHANGED
@@ -116,6 +116,36 @@ class WikiSQL(datasets.GeneratorBasedBuilder):
|
|
116 |
dev_path="dev_CollSgE.jsonl",
|
117 |
test_path="test_CollSgE.jsonl"
|
118 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
119 |
]
|
120 |
|
121 |
def _info(self):
|
|
|
116 |
dev_path="dev_CollSgE.jsonl",
|
117 |
test_path="test_CollSgE.jsonl"
|
118 |
),
|
119 |
+
WikiSQLConfig(
|
120 |
+
name="IndE",
|
121 |
+
description=textwrap.dedent(
|
122 |
+
"""\
|
123 |
+
An Indian English variant of the large crowd-sourced dataset for developing natural language interfaces for relational databases"""
|
124 |
+
),
|
125 |
+
train_path="train_IndE.jsonl",
|
126 |
+
dev_path="dev_IndE.jsonl",
|
127 |
+
test_path="test_IndE.jsonl"
|
128 |
+
),
|
129 |
+
WikiSQLConfig(
|
130 |
+
name="UAAVE",
|
131 |
+
description=textwrap.dedent(
|
132 |
+
"""\
|
133 |
+
An Urban African American English variant of the large crowd-sourced dataset for developing natural language interfaces for relational databases"""
|
134 |
+
),
|
135 |
+
train_path="train_UAAVE.jsonl",
|
136 |
+
dev_path="dev_UAAVE.jsonl",
|
137 |
+
test_path="test_UAAVE.jsonl"
|
138 |
+
),
|
139 |
+
WikiSQLConfig(
|
140 |
+
name="MULTI",
|
141 |
+
description=textwrap.dedent(
|
142 |
+
"""\
|
143 |
+
A mixed-dialectal variant of the large crowd-sourced dataset for developing natural language interfaces for relational databases"""
|
144 |
+
),
|
145 |
+
train_path="train_MULTI.jsonl",
|
146 |
+
dev_path="dev_MULTI.jsonl",
|
147 |
+
test_path="test_MULTI.jsonl"
|
148 |
+
),
|
149 |
]
|
150 |
|
151 |
def _info(self):
|