Uses of Class
org.tribuo.MutableDataset
Packages that use MutableDataset
Package
Description
Provides the core interfaces and classes for using Tribuo.
Provides classes which can load columnar data (using a
RowProcessor
)
from a CSV (or other character delimited format) file.Provides infrastructure for applying transformations to a
Dataset
.-
Uses of MutableDataset in org.tribuo
Methods in org.tribuo that return MutableDatasetModifier and TypeMethodDescriptionstatic <T extends Output<T>>
MutableDataset<T> MutableDataset.createDeepCopy
(Dataset<T> other) Creates a deep copy of the suppliedDataset
which is mutable. -
Uses of MutableDataset in org.tribuo.data.csv
Methods in org.tribuo.data.csv that return MutableDatasetModifier and TypeMethodDescriptionLoads a DataSource from the specified csv file then wraps it in a dataset.Loads a DataSource from the specified csv file then wraps it in a dataset.Loads a DataSource from the specified csv file then wraps it in a dataset.Loads a DataSource from the specified csv file then wraps it in a dataset. -
Uses of MutableDataset in org.tribuo.transform
Methods in org.tribuo.transform that return MutableDatasetModifier and TypeMethodDescription<T extends Output<T>>
MutableDataset<T> TransformerMap.transformDataset
(Dataset<T> dataset) Copies the supplied dataset and applies the transformers to each example in it.<T extends Output<T>>
MutableDataset<T> TransformerMap.transformDataset
(Dataset<T> dataset, boolean densify) Copies the supplied dataset and applies the transformers to each example in it.