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 SourceC
The threshold value in case of split on an ordered variable.
Declaration
public float C
Field Value
Type | Description |
---|---|
System.Single |
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 |
Next
Index of the next split in the list of splits for the node
Declaration
public int Next
Field Value
Type | Description |
---|---|
System.Int32 |
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 |
SubsetOfs
Offset of the bitset used by the split on a categorical variable.
Declaration
public int SubsetOfs
Field Value
Type | Description |
---|---|
System.Int32 |
VarIdx
Index of variable on which the split is created.
Declaration
public int VarIdx
Field Value
Type | Description |
---|---|
System.Int32 |