Package smile.validation.metric
Record Class ConfusionMatrix
java.lang.Object
java.lang.Record
smile.validation.metric.ConfusionMatrix
- Record Components:
matrix- the confusion matrix.
- All Implemented Interfaces:
Serializable
The confusion matrix of truth and predictions.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConfusionMatrix(int[][] matrix) Creates an instance of aConfusionMatrixrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.int[][]matrix()Returns the value of thematrixrecord component.static ConfusionMatrixof(int[] truth, int[] prediction) Creates the confusion matrix.toString()Returns a string representation of this record class.
-
Constructor Details
-
ConfusionMatrix
public ConfusionMatrix(int[][] matrix) Creates an instance of aConfusionMatrixrecord class.- Parameters:
matrix- the value for thematrixrecord component
-
-
Method Details
-
of
Creates the confusion matrix.- Parameters:
truth- the ground truth.prediction- the prediction.- Returns:
- the confusion matrix.
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
matrix
public int[][] matrix()Returns the value of thematrixrecord component.- Returns:
- the value of the
matrixrecord component
-