Multi-Label Classification
Multi-label classification models predict multiple outcomes. In Aporia, these models are represented with the multi-label
model type.
Examples of multi-label classification problems:
Is this song sad, happy, funny, rock, jazz, or all simultaneously?
Does this movie belong to one or more of the 'romantic', 'comedy', 'documentary', 'thriller' categories, or all simultaneously?
Integration
To monitor a multi-label model, create a new model version with a dict
field where keys are different labels and values are the probabilities for each label:
Next, connect to a data source or manually log predictions like so:
If you don't have probabilities for each label, you can log zeros and ones instead. To log actuals for this prediction:
You can also log multiple dict
fields if you have a multi-multi-label model :)
Last updated