Print statement.
Browse files- anime-tagging-dataset.py +1 -0
anime-tagging-dataset.py
CHANGED
@@ -38,6 +38,7 @@ class AnimeTagging(datasets.GeneratorBasedBuilder):
|
|
38 |
]
|
39 |
|
40 |
def _generate_examples(self, images_path):
|
|
|
41 |
logger.info("generating examples from = %s", images_path)
|
42 |
for i, filepath in enumerate(images_path.glob("**/*.jpg")):
|
43 |
with filepath.open("rb") as f:
|
|
|
38 |
]
|
39 |
|
40 |
def _generate_examples(self, images_path):
|
41 |
+
print("generating examples from = %s", images_path)
|
42 |
logger.info("generating examples from = %s", images_path)
|
43 |
for i, filepath in enumerate(images_path.glob("**/*.jpg")):
|
44 |
with filepath.open("rb") as f:
|