Package com.bayesserver.data
Class CrossValidationOutput
- java.lang.Object
-
- com.bayesserver.data.CrossValidationOutput
-
public final class CrossValidationOutput extends Object
Details of a Cross-Validation partition.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetPartition()Gets the zero based index of the partition.DataPartitioninggetTestPartitioning()Gets the test DataPartitioning associated with this partition.DataPartitioninggetTrainingPartioning()Gets the training DataPartitioning associated with this partition.
-
-
-
Method Detail
-
getPartition
public int getPartition()
Gets the zero based index of the partition.
-
getTrainingPartioning
public DataPartitioning getTrainingPartioning()
Gets the training DataPartitioning associated with this partition.
-
getTestPartitioning
public DataPartitioning getTestPartitioning()
Gets the test DataPartitioning associated with this partition.
-
-