File size: 450 Bytes
e8861c0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import torchvision
from typing import Optional, Callable
from src.core import register
@register
class CIFAR10(torchvision.datasets.CIFAR10):
__inject__ = ['transform', 'target_transform']
def __init__(self, root: str, train: bool = True, transform: Optional[Callable] = None, target_transform: Optional[Callable] = None, download: bool = False) -> None:
super().__init__(root, train, transform, target_transform, download)
|