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

tech.tablesaw.api.ml.classification.ConfusionMatrix Maven / Gradle / Ivy

package tech.tablesaw.api.ml.classification;

/**
 *
 */
public interface ConfusionMatrix {
    void increment(Integer predicted, Integer actual);

    @Override
    String toString();

    tech.tablesaw.api.Table toTable();

    double accuracy();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy