Datasets:
Add logger.info print
Browse files
CC6204-Hackaton-Cub-Dataset.py
CHANGED
@@ -103,7 +103,7 @@ class CubDataset(datasets.GeneratorBasedBuilder):
|
|
103 |
# Download images
|
104 |
img_data_files = dl_manager.download_and_extract(_URLS["image_urls"])
|
105 |
text_data_files = dl_manager.download_and_extract(_URLS["text_urls"])
|
106 |
-
|
107 |
|
108 |
img_path_files = dl_manager.iter_files(img_data_files)
|
109 |
text_path_files = dl_manager.iter_files(text_data_files)
|
|
|
103 |
# Download images
|
104 |
img_data_files = dl_manager.download_and_extract(_URLS["image_urls"])
|
105 |
text_data_files = dl_manager.download_and_extract(_URLS["text_urls"])
|
106 |
+
logger.info(f"text_data_files: {text_data_files}")
|
107 |
|
108 |
img_path_files = dl_manager.iter_files(img_data_files)
|
109 |
text_path_files = dl_manager.iter_files(text_data_files)
|