org.encog.ml
Interface MLRegression
- All Superinterfaces:
- MLInput, MLInputOutput, MLMethod, MLOutput
- All Known Subinterfaces:
- MLAutoAssocation
- All Known Implementing Classes:
- BasicNetwork, BasicPNN, BoltzmannMachine, CPN, GaussianFitting, HopfieldNetwork, LinearRegression, NEATNetwork, RBFNetwork, SVM, ThermalNetwork
public interface MLRegression
- extends MLInputOutput
Defines a Machine Learning Method that supports regression. Regression
takes an input and produces numeric output. Function approximation
uses regression. Contrast this to classification, which uses the input
to assign a class.
compute
MLData compute(MLData input)
- Compute regression.
- Parameters:
input - The input data.
- Returns:
- The output data.
Copyright © 2012. All Rights Reserved.