Can somebody please explain me the file structure of downloaded MNIST datase from Kaggle, via kagglehub as zip(23MB) file, when unzip I get these:
- folder: t10k-images-idx3-ubyte --> (inside the folder) --> t10k-images-idx3-ubyte
- folder: t10k-images-idx1-ubyte --> (inside the folder) --> t10k-images-idx3-ubyte
- folder: train-images-idx3-ubyte --> (inside the folder) --> train-images-idx3-ubyte
- folder: train-images-idx1-ubyte --> (inside the folder) --> train-images-idx1-ubyte
- file: t10k-images.idx3-ubyte
- file: t10k-labels.idx1-ubyte
- file: train-images.idx3-ubyte
- file: train-labels.idx1-ubyte
no gz extensions... ...I would like to know if it is right the following procedure for reading the sets locally using pytorch:
import torch
from torchvision import datasets, transforms
transform = transforms.Compose([transforms.ToTensor()])
mnist_pytorch = datasets.MNIST(root='../', train=True, download=False, transform=transform)
thanks a lot for your time