Uses of Interface
com.bayesserver.data.CrossValidationTestResult
-
Packages that use CrossValidationTestResult Package Description com.bayesserver.data -
-
Uses of CrossValidationTestResult in com.bayesserver.data
Classes in com.bayesserver.data that implement CrossValidationTestResult Modifier and Type Class Description class
DefaultCrossValidationTestResult
A simple default implementation ofCrossValidationTestResult
.class
R2CrossValidationTestResult
Represents the R Squared statistic (Coefficient of determination) on a partition of data.Methods in com.bayesserver.data that return CrossValidationTestResult Modifier and Type Method Description CrossValidationTestResult[]
CrossValidationActions. test(DataPartitioning testPartitioning, CrossValidationNetwork crossValidationNetwork)
A user supplied function to test the network on a test partitioning of the data.Methods in com.bayesserver.data with parameters of type CrossValidationTestResult Modifier and Type Method Description CrossValidationScore
CrossValidationActions. combine(int metric, CrossValidationTestResult[] testResults)
A user supplied function to combine the test results over multiple partitioning.Method parameters in com.bayesserver.data with type arguments of type CrossValidationTestResult Modifier and Type Method Description static double
CrossValidation. combine(Iterable<CrossValidationTestResult> testResults, CrossValidationCombineMethod method)
Provides standard ways of combining numeric test results from a number of partitions.
-