Datasets:

toniwuest commited on
Commit
44624b3
·
verified ·
1 Parent(s): e8837b2

Update CLEVR-Sudoku.py

Browse files
Files changed (1) hide show
  1. CLEVR-Sudoku.py +3 -0
CLEVR-Sudoku.py CHANGED
@@ -172,6 +172,9 @@ class CLEVRSudoku(datasets.GeneratorBasedBuilder):
172
  for i, (file_name, file_handle) in enumerate(dl_manager.iter_archive(f)):
173
  # Only process files that are in the 'json/' folder and end with '.json'
174
  if file_name.startswith("json/") and file_name.endswith(".json"):
 
 
 
175
  # Read and parse the JSON content
176
  json_content = json.load(file_handle)
177
 
 
172
  for i, (file_name, file_handle) in enumerate(dl_manager.iter_archive(f)):
173
  # Only process files that are in the 'json/' folder and end with '.json'
174
  if file_name.startswith("json/") and file_name.endswith(".json"):
175
+
176
+ print(i, file_handle)
177
+
178
  # Read and parse the JSON content
179
  json_content = json.load(file_handle)
180