Table of Contents

Struct DTrees.Split

Namespace
OpenCvSharp.ML
Assembly
OpenCvSharp.dll

The class represents split in a decision tree.

[SuppressMessage("Microsoft.Design", "CA1815: Override equals and operator equals on value types")]
public struct DTrees.Split
Inherited Members

Fields

C

The threshold value in case of split on an ordered variable.

public float C

Field Value

float

Inversed

If not 0, then the inverse split rule is used (i.e. left and right branches are exchanged in the rule expressions below).

public int Inversed

Field Value

int

Next

Index of the next split in the list of splits for the node

public int Next

Field Value

int

Quality

The split quality, a positive number. It is used to choose the best split.

public float Quality

Field Value

float

SubsetOfs

Offset of the bitset used by the split on a categorical variable.

public int SubsetOfs

Field Value

int

VarIdx

Index of variable on which the split is created.

public int VarIdx

Field Value

int