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
from torchvision import datasets
from torchvision.transforms import ToTensor
train_data = datasets.CIFAR10(
root="data",
train=True,
download=True,
transform=ToTensor(), # images come as PIL format, we want to turn into Torch tensors
target_transform=None
)
Then I run python generate_sim.py --data_set cifar10 --data_path data --sim_path /content/UHSCM/ and the answer was FileNotFoundError: [Errno 2] No such file or directory: 'data.mat'
Can you show me how to download CIFAR10 to use with your algorithm?
No description provided.
The text was updated successfully, but these errors were encountered: