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

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

The newest version!
package de.bwaldvogel.liblinear;

public class ParameterCSearchResult {

    private final double bestC;
    private final double bestScore;

    public ParameterCSearchResult(double bestC, double bestScore) {
        this.bestC = bestC;
        this.bestScore = bestScore;
    }

    public double getBestC() {
        return bestC;
    }

    public double getBestScore() {
        return bestScore;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy