mirror of
https://github.com/ION606/COGMOD-HWI.git
synced 2026-05-14 22:16:57 +00:00
8 lines
243 B
Python
8 lines
243 B
Python
from torchvision.datasets import CIFAR10, CIFAR100
|
|
import tensorflow_datasets as tfds
|
|
|
|
ds10 = CIFAR10(root='data/', train=True, download=True)
|
|
ds100 = CIFAR100(root='data/', train=True, download=True)
|
|
|
|
ds_c10c = tfds.load('cifar10_corrupted')
|