Table of Contents

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

string

Hyperparameters

Gets or sets the hyperparameter definitions.

public IList<HyperparameterDefinition> Hyperparameters { get; set; }

Property Value

IList<HyperparameterDefinition>

IncludeInSearch

Gets or sets whether to include this augmentation in the search.

public bool IncludeInSearch { get; set; }

Property Value

bool

IncompatibleWith

Gets or sets incompatible augmentations (cannot be used together).

public IList<string>? IncompatibleWith { get; set; }

Property Value

IList<string>

ProbabilityRange

Gets or sets the probability search range.

public (double min, double max) ProbabilityRange { get; set; }

Property Value

(double min, double max)

RequiredWith

Gets or sets required augmentations (must be used together).

public IList<string>? RequiredWith { get; set; }

Property Value

IList<string>