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
ConstructorDescriptionConfusionMatrix
(int[][] matrix) Creates an instance of aConfusionMatrix
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.int[][]
matrix()
Returns the value of thematrix
record component.static ConfusionMatrix
of
(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 aConfusionMatrix
record class.- Parameters:
matrix
- the value for thematrix
record 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 thematrix
record component.- Returns:
- the value of the
matrix
record component
-