You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But download parameter is explained in the middle as shown below:
Parameters
root (str or pathlib.Path) – Root directory of dataset where FashionMNIST/raw/train-images-idx3-ubyte and FashionMNIST/raw/t10k-images-idx3-ubyte exist.
train (bool, optional) – If True, creates dataset from train-images-idx3-ubyte, otherwise from t10k-images-idx3-ubyte.
download (bool, optional) – If True, downloads the dataset from the internet and puts it in root directory. If dataset is already downloaded, it is not downloaded again.
transform (callable, optional) – A function/transform that takes in a PIL image and returns a transformed version. E.g, transforms.RandomCrop
target_transform (callable, optional) – A function/transform that takes in the target and transforms it.dataset from the internet and puts it in root directory. If dataset is already downloaded, it is not downloaded again.
Suggest a potential alternative/fix
So download parameter should be explained at the end as shown below:
Parameters
root (str or pathlib.Path) – Root directory of dataset where FashionMNIST/raw/train-images-idx3-ubyte and FashionMNIST/raw/t10k-images-idx3-ubyte exist.
train (bool, optional) – If True, creates dataset from train-images-idx3-ubyte, otherwise from t10k-images-idx3-ubyte.
transform (callable, optional) – A function/transform that takes in a PIL image and returns a transformed version. E.g, transforms.RandomCrop
target_transform (callable, optional) – A function/transform that takes in the target and transforms it.dataset from the internet and puts it in root directory. If dataset is already downloaded, it is not downloaded again.
download (bool, optional) – If True, downloads the dataset from the internet and puts it in root directory. If dataset is already downloaded, it is not downloaded again.
The text was updated successfully, but these errors were encountered:
📚 The doc issue
The doc of
FashionMNIST()
says thatdownload
parameter is at the end as shown below:But
download
parameter is explained in the middle as shown below:Suggest a potential alternative/fix
So
download
parameter should be explained at the end as shown below:The text was updated successfully, but these errors were encountered: