Datasets:
Update CC6204-Hackaton-Cub-Dataset.py
Browse files
CC6204-Hackaton-Cub-Dataset.py
CHANGED
@@ -112,6 +112,7 @@ class CubDataset(datasets.GeneratorBasedBuilder):
|
|
112 |
|
113 |
#for img, text in zip(img_path_files, text_path_files):
|
114 |
for img in img_path_files:
|
|
|
115 |
text = text_data_files[text_data_files.index(os.path.basename(img).replace("jpg", "txt"))]
|
116 |
img_idx = _IMGNAME2ID[os.path.basename(img)]
|
117 |
if img_idx in _TRAIN_IDX_SET:
|
|
|
112 |
|
113 |
#for img, text in zip(img_path_files, text_path_files):
|
114 |
for img in img_path_files:
|
115 |
+
print(os.path.basename(img))
|
116 |
text = text_data_files[text_data_files.index(os.path.basename(img).replace("jpg", "txt"))]
|
117 |
img_idx = _IMGNAME2ID[os.path.basename(img)]
|
118 |
if img_idx in _TRAIN_IDX_SET:
|