confusion_matrix
ConfusionMatrix
¶
Bases: Trace
Computes the confusion matrix between y_true (rows) and y_predicted (columns).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
true_key |
str
|
Name of the key that corresponds to ground truth in the batch dictionary. |
required |
pred_key |
str
|
Name of the key that corresponds to predicted score in the batch dictionary. |
required |
num_classes |
int
|
Total number of classes of the confusion matrix. |
required |
mode |
Union[str, Set[str]]
|
What mode(s) to execute this Trace in. For example, "train", "eval", "test", or "infer". To execute regardless of mode, pass None. To execute in all modes except for a particular one, you can pass an argument like "!infer" or "!train". |
('eval', 'test')
|
output_name |
str
|
Name of the key to store to the state. |
'confusion_matrix'
|