tech.tablesaw.api.ml.classification.StandardConfusionMatrix Maven / Gradle / Ivy
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package tech.tablesaw.api.ml.classification;
import com.google.common.collect.Table;
import com.google.common.collect.TreeBasedTable;
import tech.tablesaw.api.CategoryColumn;
import tech.tablesaw.api.IntColumn;
import java.util.ArrayList;
import java.util.List;
import java.util.SortedMap;
import java.util.SortedSet;
import java.util.TreeMap;
import java.util.TreeSet;
/**
* A confusion matrix is used to measure the accuracy of a classifier by counting the number of correct and
* incorrect values produced when testing the classifier such that the counts are made for every combination of
* correct and incorrect classification
*/
public class StandardConfusionMatrix implements ConfusionMatrix {
private final Table table = TreeBasedTable.create();
private SortedMap labels = new TreeMap<>();
public StandardConfusionMatrix(SortedSet
© 2015 - 2025 Weber Informatics LLC | Privacy Policy