Commit
·
e88b242
1
Parent(s):
eec7931
Update test.py
Browse files
test.py
CHANGED
@@ -285,27 +285,27 @@ class Test(datasets.GeneratorBasedBuilder):
|
|
285 |
for target in targets
|
286 |
)
|
287 |
)
|
288 |
-
raise Exception(dl_manager.download(
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
|
300 |
mapped_paths = dl_manager.extract( dl_manager.download(
|
301 |
dict( (
|
302 |
-
|
303 |
dict(
|
304 |
-
(target, _URLS[target][
|
305 |
for target in targets
|
306 |
),
|
307 |
)
|
308 |
-
|
309 |
)
|
310 |
))
|
311 |
|
|
|
285 |
for target in targets
|
286 |
)
|
287 |
)
|
288 |
+
# raise Exception(dl_manager.download(
|
289 |
+
# dict( (
|
290 |
+
# placeholder_key,
|
291 |
+
# dict(
|
292 |
+
# (target, _URLS[target][placeholder_key])
|
293 |
+
# for target in targets
|
294 |
+
# ),
|
295 |
+
# )
|
296 |
+
# for placeholder_key in ("dev","test")
|
297 |
+
# )
|
298 |
+
# ))
|
299 |
|
300 |
mapped_paths = dl_manager.extract( dl_manager.download(
|
301 |
dict( (
|
302 |
+
"test",
|
303 |
dict(
|
304 |
+
(target, _URLS[target]["test"])
|
305 |
for target in targets
|
306 |
),
|
307 |
)
|
308 |
+
|
309 |
)
|
310 |
))
|
311 |
|