Multi-Class
MultiClassPredictionLabel
Arize class to define the prediction and threshold arguments associated with the multi-class model type.
Argument
Data Type
Definitions
prediction_scores
Dict[str, Union[Float, int]]
(Required) The prediction scores of the classes
threshold_scores
Dict[str, Union[Float, int]]
(Optional) The threshold scores of the classes. Required for Multi-Label use cases.
MultiClassActualLabel
Arize class to define the actual arguments associated with the multi-class model type.
Argument
Data Type
Definitions
actual_scores
Dict[str, Union[Float, int]]
(Required) The actual scores of the classes. Any class in actual_scores
with a score of 1 will be sent to Arize.
Code Example
Last updated