"tests/python/pytorch/graphbolt/test_minibatch.py" did not exist on "d63130a7fe1cf083d63954478bc63384c9d933a3"
Commit ccbb3221 authored by Philip Meier's avatar Philip Meier Committed by Soumith Chintala
Browse files

Fix for ImageNet dataset (#858)

* Fix wrong doc string

* bug fix
parent 81ca2a1d
...@@ -45,7 +45,7 @@ class ImageNet(ImageFolder): ...@@ -45,7 +45,7 @@ class ImageNet(ImageFolder):
classes (list): List of the class names. classes (list): List of the class names.
class_to_idx (dict): Dict with items (class_name, class_index). class_to_idx (dict): Dict with items (class_name, class_index).
wnids (list): List of the WordNet IDs. wnids (list): List of the WordNet IDs.
class_to_idx (dict): Dict with items (wordnet_id, wordnet_id_index). wnid_to_idx (dict): Dict with items (wordnet_id, class_index).
imgs (list): List of (image path, class_index) tuples imgs (list): List of (image path, class_index) tuples
targets (list): The class_index value for each image in the dataset targets (list): The class_index value for each image in the dataset
""" """
...@@ -156,7 +156,7 @@ def download_and_extract_tar(url, download_root, extract_root=None, filename=Non ...@@ -156,7 +156,7 @@ def download_and_extract_tar(url, download_root, extract_root=None, filename=Non
md5=None, **kwargs): md5=None, **kwargs):
download_root = os.path.expanduser(download_root) download_root = os.path.expanduser(download_root)
if extract_root is None: if extract_root is None:
extract_root = extract_root extract_root = download_root
if filename is None: if filename is None:
filename = os.path.basename(url) filename = os.path.basename(url)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment