alkzar90 lhoestq HF staff commited on
Commit
e7ec57d
1 Parent(s): d444bf3

Pass a list instead of an iterator (#1)

Browse files

- Pass a list instead of an iterator (a0d0ecafd36dbd94a849e11aedb70ecbd9473d00)


Co-authored-by: Quentin Lhoest <lhoestq@users.noreply.huggingface.co>

Files changed (1) hide show
  1. NIH-Chest-X-ray-dataset.py +2 -2
NIH-Chest-X-ray-dataset.py CHANGED
@@ -195,14 +195,14 @@ class ChestXray14(datasets.GeneratorBasedBuilder):
195
  datasets.SplitGenerator(
196
  name=datasets.Split.TRAIN,
197
  gen_kwargs={
198
- "files": iter(train_files)
199
  }
200
 
201
  ),
202
  datasets.SplitGenerator(
203
  name=datasets.Split.TEST,
204
  gen_kwargs={
205
- "files": iter(test_files)
206
  }
207
  )
208
  ]
 
195
  datasets.SplitGenerator(
196
  name=datasets.Split.TRAIN,
197
  gen_kwargs={
198
+ "files": train_files
199
  }
200
 
201
  ),
202
  datasets.SplitGenerator(
203
  name=datasets.Split.TEST,
204
  gen_kwargs={
205
+ "files": test_files
206
  }
207
  )
208
  ]