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

com.datastax.insight.core.entity.Metrics Maven / Gradle / Ivy

The newest version!
package com.datastax.insight.core.entity;

import java.io.Serializable;
import java.util.List;

/**
 * Created by datastax on 2017/1/7.
 */
public class Metrics implements Serializable {

    private Indicator indicator = new Indicator();
    private ConfusionMatrix confusionMatrix;
    private List roc;
    private List pr;
    private List ksMinus;
    private List ksPlus;
    private List lift;
    private List gain;
    private StatisticD d;

    public Indicator getIndicator() {
        return indicator;
    }

    public void setIndicator(Indicator indicator) {
        this.indicator = indicator;
    }

    public ConfusionMatrix getConfusionMatrix() {
        return confusionMatrix;
    }

    public void setConfusionMatrix(ConfusionMatrix confusionMatrix) {
        this.confusionMatrix = confusionMatrix;
    }

    public List getRoc() {
        return roc;
    }

    public void setRoc(List roc) {
        this.roc = roc;
    }

    public List getPr() {
        return pr;
    }

    public void setPr(List pr) {
        this.pr = pr;
    }

    public List getKsMinus() {
        return ksMinus;
    }

    public void setKsMinus(List ksMinus) {
        this.ksMinus = ksMinus;
    }

    public List getKsPlus() {
        return ksPlus;
    }

    public void setKsPlus(List ksPlus) {
        this.ksPlus = ksPlus;
    }

    public List getLift() {
        return lift;
    }

    public void setLift(List lift) {
        this.lift = lift;
    }

    public List getGain() {
        return gain;
    }

    public void setGain(List gain) {
        this.gain = gain;
    }

    public StatisticD getD() {
        return d;
    }

    public void setD(StatisticD d) {
        this.d = d;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy