Created a base class called BaseCompose similar to audiomentations
SomeOf is a subclass of BaseCompose which randomizes the transforms applied on each call (and checks if number of transfroms to be applied is less than total number of transforms available)
OneOf is a subclass of SomeOf which only applies one transform at a time
BaseCompose
similar to audiomentationsSomeOf
is a subclass ofBaseCompose
which randomizes the transforms applied on each call (and checks if number of transfroms to be applied is less than total number of transforms available)OneOf
is a subclass ofSomeOf
which only applies one transform at a time