@Generated(value="software.amazon.awssdk:codegen") public final class ConfusionMatrix extends Object implements SdkPojo, Serializable, ToCopyableBuilder<ConfusionMatrix.Builder,ConfusionMatrix>
The confusion matrix shows you what your transform is predicting accurately and what types of errors it is making.
For more information, see Confusion matrix in Wikipedia.
| Modifier and Type | Class and Description |
|---|---|
static interface |
ConfusionMatrix.Builder |
| Modifier and Type | Method and Description |
|---|---|
static ConfusionMatrix.Builder |
builder() |
boolean |
equals(Object obj) |
boolean |
equalsBySdkFields(Object obj) |
<T> Optional<T> |
getValueForField(String fieldName,
Class<T> clazz) |
int |
hashCode() |
Long |
numFalseNegatives()
The number of matches in the data that the transform didn't find, in the confusion matrix for your transform.
|
Long |
numFalsePositives()
The number of nonmatches in the data that the transform incorrectly classified as a match, in the confusion
matrix for your transform.
|
Long |
numTrueNegatives()
The number of nonmatches in the data that the transform correctly rejected, in the confusion matrix for your
transform.
|
Long |
numTruePositives()
The number of matches in the data that the transform correctly found, in the confusion matrix for your transform.
|
List<SdkField<?>> |
sdkFields() |
static Class<? extends ConfusionMatrix.Builder> |
serializableBuilderClass() |
ConfusionMatrix.Builder |
toBuilder() |
String |
toString()
Returns a string representation of this object.
|
clone, finalize, getClass, notify, notifyAll, wait, wait, waitcopypublic final Long numTruePositives()
The number of matches in the data that the transform correctly found, in the confusion matrix for your transform.
public final Long numFalsePositives()
The number of nonmatches in the data that the transform incorrectly classified as a match, in the confusion matrix for your transform.
public final Long numTrueNegatives()
The number of nonmatches in the data that the transform correctly rejected, in the confusion matrix for your transform.
public final Long numFalseNegatives()
The number of matches in the data that the transform didn't find, in the confusion matrix for your transform.
public ConfusionMatrix.Builder toBuilder()
toBuilder in interface ToCopyableBuilder<ConfusionMatrix.Builder,ConfusionMatrix>public static ConfusionMatrix.Builder builder()
public static Class<? extends ConfusionMatrix.Builder> serializableBuilderClass()
public final boolean equalsBySdkFields(Object obj)
equalsBySdkFields in interface SdkPojopublic final String toString()
Copyright © 2023. All rights reserved.