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

nak.liblinear.Function Maven / Gradle / Ivy

The newest version!
package nak.liblinear;

// origin: tron.h
interface Function {

    double fun(double[] w);

    void grad(double[] w, double[] g);

    void Hv(double[] s, double[] Hs);

    int get_nr_variable();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy