Package org.tribuo.multilabel.baseline
package org.tribuo.multilabel.baseline
Provides implementations of binary relevance based multi-label classification
algorithms.
IndependentMultiLabelTrainer
provides
the standard binary relevance algorithm where n models are built independently,
one per label in the domain.
ClassifierChainTrainer
provides
classifier chains, which train n models in a sequence, one per label, where
each model observes the labels before it in the chain. This label ordering
can be random, or specified on construction.
-
ClassDescriptionA Classifier Chain Model.A trainer for a Classifier Chain.A
Model
which wraps n binary models, where n is the size of the MultiLabel domain.