Uses of Interface
org.tribuo.OutputInfo
Packages that use OutputInfo
Package
Description
Provides the core interfaces and classes for using Tribuo.
Provides implementations of base classes and interfaces from
org.tribuo.Provides core classes for working with sequences of
Examples.-
Uses of OutputInfo in org.tribuo
Subinterfaces of OutputInfo in org.tribuoModifier and TypeInterfaceDescriptioninterfaceImmutableOutputInfo<T extends Output<T>>AnOutputInfothat is fixed, and contains an id number for each valid output.interfaceMutableOutputInfo<T extends Output<T>>A mutable OutputInfo that can record observed output values.Methods in org.tribuo that return OutputInfoModifier and TypeMethodDescriptionOutputInfo.copy()Generates a copy of this OutputInfo, including it's mutability.static OutputInfo<?> OutputInfo.deserialize(org.tribuo.protos.core.OutputDomainProto proto) Deserializes aOutputDomainProtointo aOutputInfosubclass.abstract OutputInfo<T> Dataset.getOutputInfo()Returns this dataset'sOutputInfo.MutableDataset.getOutputInfo()Methods in org.tribuo with parameters of type OutputInfoModifier and TypeMethodDescriptionprotected DatasetDataCarrier<T> Dataset.createDataCarrier(FeatureMap featureMap, OutputInfo<T> outputInfo) Constructs the data carrier for serialization.protected DatasetDataCarrier<T> Dataset.createDataCarrier(FeatureMap featureMap, OutputInfo<T> outputInfo, List<com.oracle.labs.mlrg.olcut.provenance.ObjectProvenance> transformationProvenances) Constructs the data carrier for serialization.Constructors in org.tribuo with parameters of type OutputInfoModifierConstructorDescriptionImmutableDataset(Iterable<Example<T>> dataSource, DataProvenance description, OutputFactory<T> outputFactory, FeatureMap featureIDMap, OutputInfo<T> outputIDInfo, boolean dropInvalidExamples) Creates a dataset from a data source.ImmutableDataset(DataSource<T> dataSource, FeatureMap featureIDMap, OutputInfo<T> outputIDInfo, boolean dropInvalidExamples) Creates a dataset from a data source. -
Uses of OutputInfo in org.tribuo.impl
Methods in org.tribuo.impl that return OutputInfoConstructors in org.tribuo.impl with parameters of type OutputInfoModifierConstructorDescriptionDatasetDataCarrier(DataProvenance provenance, FeatureMap featureDomain, OutputInfo<T> outputDomain, OutputFactory<T> outputFactory, List<com.oracle.labs.mlrg.olcut.provenance.ObjectProvenance> transformProvenances, String tribuoVersion) Constructs a new DatasetDataCarrier. -
Uses of OutputInfo in org.tribuo.sequence
Methods in org.tribuo.sequence that return OutputInfoModifier and TypeMethodDescriptionMutableSequenceDataset.getOutputInfo()abstract OutputInfo<T> SequenceDataset.getOutputInfo()The output info in this dataset.Methods in org.tribuo.sequence with parameters of type OutputInfoModifier and TypeMethodDescriptionprotected DatasetDataCarrier<T> SequenceDataset.createDataCarrier(FeatureMap featureMap, OutputInfo<T> outputInfo) Constructs the data carrier for serialization.Constructors in org.tribuo.sequence with parameters of type OutputInfoModifierConstructorDescriptionImmutableSequenceDataset(Iterable<SequenceExample<T>> dataSource, DataProvenance sourceProvenance, FeatureMap featureIDMap, OutputInfo<T> outputIDInfo, OutputFactory<T> outputFactory) Creates a dataset from a data source.ImmutableSequenceDataset(SequenceDataSource<T> dataSource, FeatureMap featureIDMap, OutputInfo<T> outputIDInfo) Creates a dataset from a data source, using the specified output and feature domains.