optimization.ISupervisedOptimizer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jstat Show documentation
Show all versions of jstat Show documentation
Java Library for Statistical Analysis.
The newest version!
package optimization;
import datastructs.I2DDataSet;
import datastructs.IVector;
import datasets.VectorDouble;
import maths.functions.IVectorRealFunction;
public interface ISupervisedOptimizer {
/**
* Optimize approximate function f on the given dataset and the
* given labels. Derived classes specify the output
*/
>> OutPutType
optimize(final DataSetType data, final VectorDouble y, IVectorRealFunction f);
}