
eu.fbk.dkm.pikes.resources.PosNegPair Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pikes-resources Show documentation
Show all versions of pikes-resources Show documentation
A collection of Java classes for accessing and querying a number of NLP resources.
The newest version!
package eu.fbk.dkm.pikes.resources;
/**
* Created by alessio on 21/05/15.
*/
public class PosNegPair {
private Double posScore;
private Double negScore;
public PosNegPair(Double posScore, Double negScore) {
this.posScore = posScore;
this.negScore = negScore;
}
public Double getPosScore() {
return posScore;
}
public Double getNegScore() {
return negScore;
}
@Override
public String toString() {
return "eu.fbk.dkm.pikes.resources.PosNegPair{" +
"posScore=" + posScore +
", negScore=" + negScore +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy