tgritsaev's picture
Upload 198 files
affcd23 verified
raw
history blame contribute delete
135 Bytes
from torch import Tensor
class AugmentationBase:
def __call__(self, data: Tensor) -> Tensor:
raise NotImplementedError()