Table of Contents

Class ClassifierChainOptions<T>

Namespace
AiDotNet.Classification.Meta
Assembly
AiDotNet.dll

Configuration options for Classifier Chain.

public class ClassifierChainOptions<T> : MetaClassifierOptions<T>

Type Parameters

T

The data type used for calculations.

Inheritance
ClassifierChainOptions<T>
Inherited Members

Properties

Order

Gets or sets the explicit order of labels in the chain.

public int[]? Order { get; set; }

Property Value

int[]

Array of label indices defining chain order.

RandomOrder

Gets or sets whether to use random chain order.

public bool RandomOrder { get; set; }

Property Value

bool

True for random order. Default is false.

RandomState

Gets or sets the random state for reproducibility.

public int? RandomState { get; set; }

Property Value

int?