fix typoe on line 76
Browse files- cell_benchmark.py +1 -1
cell_benchmark.py
CHANGED
@@ -73,7 +73,7 @@ class Cellsegmentation(datasets.GeneratorBasedBuilder):
|
|
73 |
|
74 |
def _generate_examples(self, files, masks, split):
|
75 |
mask_path = os.path.basename(masks)
|
76 |
-
for i, path in
|
77 |
file_name = os.path.basename(path)
|
78 |
yield i, {
|
79 |
"image": path,
|
|
|
73 |
|
74 |
def _generate_examples(self, files, masks, split):
|
75 |
mask_path = os.path.basename(masks)
|
76 |
+
for i, path in enumerate(files):
|
77 |
file_name = os.path.basename(path)
|
78 |
yield i, {
|
79 |
"image": path,
|