File size: 442 Bytes
affcd23 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | from typing import List, Callable
from torch import Tensor
from hw_asr.augmentations.base import AugmentationBase
class SequentialAugmentation(AugmentationBase):
def __init__(self, augmentation_list: List[Callable]):
self.augmentation_list = augmentation_list
def __call__(self, data: Tensor) -> Tensor:
x = data
for augmentation in self.augmentation_list:
x = augmentation(x)
return x |