Table of Contents

Interface ILabelMixingAugmentation<T, TData>

Namespace
AiDotNet.Augmentation
Assembly
AiDotNet.dll

Interface for augmentations that modify labels (e.g., Mixup, CutMix).

public interface ILabelMixingAugmentation<T, TData> : IAugmentation<T, TData>

Type Parameters

T

The numeric type for calculations.

TData

The data type being augmented.

Inherited Members

Properties

LastMixingLambda

Gets the mixing lambda value from the last application.

T LastMixingLambda { get; }

Property Value

T

Events

OnLabelMixing

Event raised when labels need to be mixed due to data mixing augmentation.

event EventHandler<LabelMixingEventArgs<T>>? OnLabelMixing

Event Type

EventHandler<LabelMixingEventArgs<T>>