Skip to content

Commit 49c5a2b

Browse files
committed
Update download_and_extract paths
1 parent c8f76f5 commit 49c5a2b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tensorflow_datasets/image_classification/caltech_birds.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -261,12 +261,13 @@ def _info(self):
261261
def _split_generators(self, dl_manager):
262262
download_path = dl_manager.download(
263263
[
264-
self._caltech_birds_info.combined_url,
264+
self._caltech_birds_info.images_url,
265265
]
266266
)
267267

268268
extracted_path = dl_manager.download_and_extract([
269-
self._caltech_birds_info.combined_url,
269+
self._caltech_birds_info.images_url,
270+
self._caltech_birds_info.segmentations_url
270271
])
271272

272273
image_names_path = os.path.join(

0 commit comments

Comments
 (0)