Syntax to add desktop MNIST Dataset?

How do direct to the local root and/or online root for MNIST dataset to train and transform it? I downloaded MNIST onto my harddrive here: MNIST_dataset | Kaggle . I understand how to change the folder directory but I am not sure if the data is supposed to be in a specific structure.

I tried this but it is getting an error?
mnist_root = your/mnist/path
train_data =datasets.MNIST(
root = mnist_root ,
train = True,
transform = ToTensor(),
download = True
)
https://discuss.pytorch.org/uploads/default/original/3X/3/0/308be214fe516e34c8046196978cbe20235ed951.png

Double post from here.

@ptrblck - Can you help on the other post?