Skip to content

augmentation

augmentation

Module for AugmentationProcessor

Classes

AugmentationProcessor

Bases: ABC

Is used by the GenericDataset to augument the input containers

Functions
__call__ abstractmethod
__call__(input_container)

The augmentation processor is called to augment an input container

Source code in niceml/data/augmentation/augmentation.py
@abstractmethod
def __call__(self, input_container: Any) -> Any:
    """The augmentation processor is called to augment an input container"""