Click or drag to resize

LeaveOneOutSubsets Class

Class LeaveOneOutSubsets generates the index subsets for a leave-one-out cross validations calculation.
Inheritance Hierarchy
SystemObject
  CenterSpace.NMath.CoreLeaveOneOutSubsets

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
[SerializableAttribute]
public class LeaveOneOutSubsets : ICrossValidationSubsets, 
	ICloneable

The LeaveOneOutSubsets type exposes the following members.

Constructors
 NameDescription
Public methodLeaveOneOutSubsets Constructs a LeaveOneOutSubsets instance.
Top
Methods
 NameDescription
Public methodClone Creates a deep copy of this LeaveOneOutSubsets.
Public methodGetTestingSubsets(DataFrame, DataFrame) Generates the leave-one-out subsets for use in cross validation.
Public methodGetTestingSubsets(DoubleMatrix, DoubleMatrix) Generates the leave-one-out subsets for use in cross validation.
Top
Remarks
Specifically, given a set of n indices, instance of this class will generate n different subsets with each subset containing n-1 indices. Each index appears in all but one of the subsets (left out of exactly one subset).
See Also