cheng-hust's picture
Upload 91 files
e8861c0 verified
raw
history blame contribute delete
450 Bytes
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)