![JAR search and dependency download from the Maven repository](/logo.png)
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