added base project

This commit is contained in:
2025-04-19 16:52:03 -04:00
parent 60eafe0ddb
commit 32fe80859b
41 changed files with 1615 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
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')