All Downloads are FREE. Search and download functionalities are using the official Maven repository.

optimization.ISupervisedOptimizer Maven / Gradle / Ivy

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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy