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

de.bwaldvogel.liblinear.ParameterSearchResult Maven / Gradle / Ivy

The newest version!
package de.bwaldvogel.liblinear;

public class ParameterSearchResult {

    private final double bestC;
    private final double bestRate;

    public ParameterSearchResult(double bestC, double bestRate) {
        this.bestC = bestC;
        this.bestRate = bestRate;
    }

    public double getBestC() {
        return bestC;
    }

    public double getBestRate() {
        return bestRate;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy