ProgramComputer commited on
Commit
e88b242
·
1 Parent(s): eec7931

Update test.py

Browse files
Files changed (1) hide show
  1. test.py +14 -14
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
- 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")
297
- )
298
- ))
299
 
300
  mapped_paths = dl_manager.extract( dl_manager.download(
301
  dict( (
302
- placeholder_key,
303
  dict(
304
- (target, _URLS[target][placeholder_key])
305
  for target in targets
306
  ),
307
  )
308
- for placeholder_key in ("test")
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