srivarra commited on
Commit
4767d85
1 Parent(s): b4eaee6

dataset name fix in script

Browse files
Files changed (1) hide show
  1. ark_example.py +1 -1
ark_example.py CHANGED
@@ -162,7 +162,7 @@ class ArkExample(datasets.GeneratorBasedBuilder):
162
  def _generate_examples(self, filepath: pathlib.Path):
163
 
164
  # Get all TMA paths
165
- file_paths = list(pathlib.Path(filepath / "input_data").glob("*"))
166
 
167
  # Loop over all the TMAs
168
  for fp in file_paths:
 
162
  def _generate_examples(self, filepath: pathlib.Path):
163
 
164
  # Get all TMA paths
165
+ file_paths = list(pathlib.Path(filepath / "image_data").glob("*"))
166
 
167
  # Loop over all the TMAs
168
  for fp in file_paths: