com.datastax.insight.core.entity.ConfusionMatrix Maven / Gradle / Ivy
The newest version!
package com.datastax.insight.core.entity;
public class ConfusionMatrix {
private Long tp;
private Long tn;
private Long fp;
private Long fn;
private Double threshold;
public Long getTp() {
return tp;
}
public void setTp(Long tp) {
this.tp = tp;
}
public Long getTn() {
return tn;
}
public void setTn(Long tn) {
this.tn = tn;
}
public Long getFp() {
return fp;
}
public void setFp(Long fp) {
this.fp = fp;
}
public Long getFn() {
return fn;
}
public void setFn(Long fn) {
this.fn = fn;
}
public Double getThreshold() {
return threshold;
}
public void setThreshold(Double threshold) {
this.threshold = threshold;
}
}