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 after transform parameter as shown below:
Parameters
...
split_ratio (int, optional) – The split ratio of number of frames. If split="train", the first split frames data[:, :split_ratio] is returned. If split="test", the last split frames data[:, split_ratio:] is returned. If split=None, this parameter is ignored and the all frames data is returned.
transform (callable, optional) – A function/transform that takes in a torch Tensor and returns a transformed version. E.g, transforms.RandomCrop
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.
Suggest a potential alternative/fix
So download parameter should be explained before transform parameter as shown below:
Parameters
...
split_ratio (int, optional) – The split ratio of number of frames. If split="train", the first split frames data[:, :split_ratio] is returned. If split="test", the last split frames data[:, split_ratio:] is returned. If split=None, this parameter is ignored and the all frames data is returned.
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 torch Tensor and returns a transformed version. E.g, transforms.RandomCrop
The text was updated successfully, but these errors were encountered:
📚 The doc issue
The doc of
MovingMNIST()
says thatdownload
parameter is beforetransform
parameter as shown below:But
download
parameter is explained aftertransform
parameter as shown below:Suggest a potential alternative/fix
So
download
parameter should be explained beforetransform
parameter as shown below:The text was updated successfully, but these errors were encountered: