ClassificationViaPLS |
Performs ClassificationViaRegression using PLSClassifierWeightedWithLoadings as base classifier, allowing access to the PLS matrices.
|
FakeClassifier |
Fake classifier that requires no dataset for training and just outputs random values within the specified bounds.
Fake build and prediction times can be set as well.
|
FromPredictions |
Encapsulates predictions from a spreadsheet.
|
GaussianProcessesAdaptive |
Implements Gaussian Processes for regression without hyperparameter-tuning.
|
GaussianProcessesNoWeights |
* Implements Gaussian processes for regression without hyperparameter-tuning.
|
GaussianProcessesWeighted |
Implements Gaussian Processes for regression without hyperparameter-tuning.
|
GeneticAlgorithm |
Applies the specified genetic algorithm to the training data and uses the best setup for the final model.
|
GPD |
Implements Gaussian Processes for regression without hyperparameter-tuning, with an inline RBF kernel.
For more information see
David J.C.
|
LinearRegressionJ |
Class for using linear regression for prediction.
|
MathExpressionClassifier |
Simple classifier that uses a pre-defined formula that can make use of attribute values using their names.
Grammar:
expr_list ::= '=' expr_list expr_part | expr_part ;
expr_part ::= expr ;
expr ::= ( expr )
# data types
| number
| string
| boolean
| date
# constants
| true
| false
| pi
| e
| now()
| today()
# negating numeric value
| -expr
# comparisons
| expr < expr
| expr <= expr
| expr > expr
| expr >= expr
| expr = expr
| expr !
|
PLSClassifierWeighted |
A wrapper classifier for the PLSFilter, utilizing the PLSFilter's ability to perform predictions.
|
PLSClassifierWeightedWithLoadings |
A wrapper classifier for the PLSFilter, utilizing the PLSFilter's ability to perform predictions.
Allows access to the PLS matrices in case the filter is a PLSFilterWithLoadings instance.
|
PLSRegressor |
A wrapper classifier for the PLS filter, utilizing the filter's ability to perform predictions.
|
PLSWeighted |
A wrapper classifier for the PLS filter, utilizing the filter's ability to perform predictions.
|
SimpleLinearRegressionIntervalEstimator |
Learns a simple linear regression model.
|
SimpleLinearRegressionWithAccess |
Learns a simple linear regression model.
|