smile.regression
Interface Regression<T>
-
- All Known Subinterfaces:
- OnlineRegression<T>
- All Known Implementing Classes:
- GaussianProcessRegression, GradientTreeBoost, LASSO, NeuralNetwork, OLS, RandomForest, RBFNetwork, RegressionTree, RidgeRegression, RLS, SVR
public interface Regression<T>Regression analysis includes any techniques for modeling and analyzing the relationship between a dependent variable and one or more independent variables. Most commonly, regression analysis estimates the conditional expectation of the dependent variable given the independent variables. Regression analysis is widely used for prediction and forecasting, where its use has substantial overlap with the field of machine learning.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method and Description doublepredict(T x)Predicts the dependent variable of an instance.default double[]predict(T[] x)Predicts the dependent variables of an array of instances.
-
-
-
Method Detail
-
predict
double predict(T x)
Predicts the dependent variable of an instance.- Parameters:
x- the instance.- Returns:
- the predicted value of dependent variable.
-
predict
default double[] predict(T[] x)
Predicts the dependent variables of an array of instances.- Parameters:
x- the instances.- Returns:
- the predicted values.
-
-
DataMelt 3.0 © DataMelt by jWork.ORG