Class AugmentationSearchSpace
- Namespace
- AiDotNet.Augmentation
- Assembly
- AiDotNet.dll
Represents the search space for augmentation hyperparameters.
public class AugmentationSearchSpace
- Inheritance
-
AugmentationSearchSpace
- Inherited Members
Properties
AugmentationType
Gets or sets the augmentation type name.
public string AugmentationType { get; set; }
Property Value
Hyperparameters
Gets or sets the hyperparameter definitions.
public IList<HyperparameterDefinition> Hyperparameters { get; set; }
Property Value
IncludeInSearch
Gets or sets whether to include this augmentation in the search.
public bool IncludeInSearch { get; set; }
Property Value
IncompatibleWith
Gets or sets incompatible augmentations (cannot be used together).
public IList<string>? IncompatibleWith { get; set; }
Property Value
ProbabilityRange
Gets or sets the probability search range.
public (double min, double max) ProbabilityRange { get; set; }
Property Value
RequiredWith
Gets or sets required augmentations (must be used together).
public IList<string>? RequiredWith { get; set; }