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

com.github.lwhite1.tablesaw.api.ml.classification.ConfusionMatrix Maven / Gradle / Ivy

package com.github.lwhite1.tablesaw.api.ml.classification;

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

  @Override
  String toString();

  com.github.lwhite1.tablesaw.api.Table toTable();

  double accuracy();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy