Show / Hide Table of Contents

Struct DTrees.Split

The class represents split in a decision tree.

Inherited Members
System.ValueType.Equals(System.Object)
System.ValueType.GetHashCode()
System.ValueType.ToString()
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: OpenCvSharp.ML
Assembly: OpenCvSharp.dll
Syntax
public struct Split

Fields

| Improve this Doc View Source

C

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

Declaration
public float C
Field Value
Type Description
System.Single
| Improve this Doc View Source

Inversed

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

Declaration
public int Inversed
Field Value
Type Description
System.Int32
| Improve this Doc View Source

Next

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

Declaration
public int Next
Field Value
Type Description
System.Int32
| Improve this Doc View Source

Quality

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

Declaration
public float Quality
Field Value
Type Description
System.Single
| Improve this Doc View Source

SubsetOfs

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

Declaration
public int SubsetOfs
Field Value
Type Description
System.Int32
| Improve this Doc View Source

VarIdx

Index of variable on which the split is created.

Declaration
public int VarIdx
Field Value
Type Description
System.Int32
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX