API Reference

OutputType

class monad.ui.config.OutputType

Defines the output format in which to save the predictions. The table below explains how different values affect prediction outputs.

TaskOutputType.RAW_MODELOutputType.ENCODEDOutputType.DECODEDOutputType.SEMANTIC
Binary ClassificationRaw model outputRaw model outputRecommended
Sigmoid of the raw model output
Sigmoid of the raw model output
Multiclass ClassificationRaw model outputRaw model outputRecommended
Softmax of the raw outputs
Predicted class
Multi-label classificationRaw model outputRaw model outputRecommended
Sigmoid of the raw outputs
Class names sorted by score
RegressionRaw model outputTransformed raw model outputRecommended
Predicted value
Predicted value
RecommendationsRaw model outputLog softmax of raw model outputInternal BaseModel codes of entitiesRecommended
A ranked list of recommended feature values
from monad.config.training_params import OutputType

OutputType.DECODED
Enum Members

RAW_MODEL
Raw model output.


ENCODED
Encoded model output,


DECODED
Decoded model output


SEMANTIC
Semantic model output