Uses of Interface
org.tribuo.sequence.SequenceTrainer
Package
Description
Provides infrastructure for
SequenceModel
s which
emit Label
s at each step of the sequence.Provides an implementation of Viterbi for generating structured outputs, which can sit on top of any
Label
based classification model.Provides an implementation of a linear chain CRF trained using Stochastic Gradient Descent.
Provides an interface for working with TensorFlow sequence models, using Tribuo's
SequenceModel
abstraction.Provides Tribuo specific infrastructure for the
Provenance
system which
tracks models and datasets.Provides internal implementations for empty provenance classes and TrainerProvenance.
Provides core classes for working with sequences of
Example
s.-
Uses of SequenceTrainer in org.tribuo.classification.sequence
Modifier and TypeFieldDescriptionSeqTrainTest.SeqTrainTestOptions.trainer
Name of the trainer in the configuration file. -
Uses of SequenceTrainer in org.tribuo.classification.sequence.viterbi
-
Uses of SequenceTrainer in org.tribuo.classification.sgd.crf
-
Uses of SequenceTrainer in org.tribuo.interop.tensorflow.sequence
Modifier and TypeClassDescriptionclass
TensorFlowSequenceTrainer<T extends Output<T>>
A trainer for SequenceModels which use an underlying TensorFlow graph. -
Uses of SequenceTrainer in org.tribuo.provenance
ModifierConstructorDescriptionprotected
SkeletalTrainerProvenance
(SequenceTrainer<T> host) Builds a trainer provenance extracting the standard information from the host. -
Uses of SequenceTrainer in org.tribuo.provenance.impl
ModifierConstructorDescriptionTrainerProvenanceImpl
(SequenceTrainer<T> host) Construct a TrainerProvenance by reading all the configurable parameters along with the train call count. -
Uses of SequenceTrainer in org.tribuo.sequence
Modifier and TypeClassDescriptionfinal class
HashingSequenceTrainer<T extends Output<T>>
A SequenceTrainer that hashes all the feature names on the way in.class
IndependentSequenceTrainer<T extends Output<T>>
Trains a sequence model by training a regular model to independently predict every example in each sequence.ModifierConstructorDescriptionHashingSequenceTrainer
(SequenceTrainer<T> trainer, Hasher hasher) Constructs a hashing sequence trainer using the supplied parameters.