Uses of Class
org.tribuo.regression.evaluation.RegressionSufficientStatistics
Packages that use RegressionSufficientStatistics
Package
Description
Evaluation classes for single or multi-dimensional regression.
- 
Uses of RegressionSufficientStatistics in org.tribuo.regression.evaluationMethods in org.tribuo.regression.evaluation with parameters of type RegressionSufficientStatisticsModifier and TypeMethodDescriptionstatic doubleRegressionMetrics.explainedVariance(MetricTarget<Regressor> target, RegressionSufficientStatistics sufficientStats) Calculates the explained variance based on the supplied statistics.static doubleRegressionMetrics.explainedVariance(Regressor variable, RegressionSufficientStatistics sufficientStats) Calculates the explained variance based on the supplied statistics for a single dimension.static doubleRegressionMetrics.mae(MetricTarget<Regressor> target, RegressionSufficientStatistics sufficientStats) Calculates the Mean Absolute Error based on the supplied statistics.static doubleRegressionMetrics.mae(Regressor variable, RegressionSufficientStatistics sufficientStats) Calculates the Mean Absolute Error based on the supplied statistics for a single dimension.static doubleRegressionMetrics.r2(MetricTarget<Regressor> target, RegressionSufficientStatistics sufficientStats) Calculates R^2 based on the supplied statistics.static doubleRegressionMetrics.r2(Regressor variable, RegressionSufficientStatistics sufficientStats) Calculates R^2 based on the supplied statistics for a single dimension.static doubleRegressionMetrics.rmse(MetricTarget<Regressor> target, RegressionSufficientStatistics sufficientStats) Calculates the RMSE based on the supplied statistics.static doubleRegressionMetrics.rmse(Regressor variable, RegressionSufficientStatistics sufficientStats) Calculates the RMSE based on the supplied statistics for a single dimension.