Uses of Interface
org.tribuo.MutableOutputInfo
Package
Description
Provides the core interfaces and classes for using Tribuo.
Provides classes and infrastructure for anomaly detection problems.
Provides classes and infrastructure for multiclass classification problems.
Provides classes and infrastructure for working with clustering problems.
Provides classes and infrastructure for working with multi-label classification problems.
Provides classes and infrastructure for regression problems with single or multiple output dimensions.
Provides core classes for working with sequences of
Example
s.-
Uses of MutableOutputInfo in org.tribuo
Modifier and TypeFieldDescriptionprotected final MutableOutputInfo<T>
MutableDataset.outputMap
Information about the outputs in this dataset.Modifier and TypeMethodDescriptionOutputFactory.generateInfo()
Generates the appropriateMutableOutputInfo
so the output values can be tracked by aDataset
or other aggregate.OutputInfo.generateMutableOutputInfo()
Generates a mutable copy of thisOutputInfo
. -
Uses of MutableOutputInfo in org.tribuo.anomaly
Modifier and TypeMethodDescriptionAnomalyFactory.generateInfo()
AnomalyInfo.generateMutableOutputInfo()
-
Uses of MutableOutputInfo in org.tribuo.classification
Modifier and TypeMethodDescriptionLabelFactory.generateInfo()
Generates an empty MutableLabelInfo.LabelInfo.generateMutableOutputInfo()
-
Uses of MutableOutputInfo in org.tribuo.clustering
Modifier and TypeMethodDescriptionClusteringFactory.generateInfo()
ClusteringInfo.generateMutableOutputInfo()
-
Uses of MutableOutputInfo in org.tribuo.multilabel
Modifier and TypeClassDescriptionclass
A MutableOutputInfo for working with multi-label tasks.Modifier and TypeMethodDescriptionMultiLabelFactory.generateInfo()
MultiLabelInfo.generateMutableOutputInfo()
-
Uses of MutableOutputInfo in org.tribuo.regression
Modifier and TypeMethodDescriptionRegressionFactory.generateInfo()
RegressionInfo.generateMutableOutputInfo()
-
Uses of MutableOutputInfo in org.tribuo.sequence
Modifier and TypeFieldDescriptionprotected final MutableOutputInfo<T>
MutableSequenceDataset.outputInfo
A map from labels to IDs for the labels found in this dataset.