Package | Description |
---|---|
org.tribuo |
Provides the core interfaces and classes for using Tribuo.
|
org.tribuo.data.csv |
Provides classes which can load columnar data (using a
RowProcessor )
from a CSV (or other character delimited format) file. |
org.tribuo.transform |
Provides infrastructure for applying transformations to a
Dataset . |
Modifier and Type | Method and Description |
---|---|
static <T extends Output<T>> |
MutableDataset.createDeepCopy(Dataset<T> other)
Creates a deep copy of the supplied
Dataset which is mutable. |
Modifier and Type | Method and Description |
---|---|
MutableDataset<T> |
CSVLoader.load(Path csvPath,
Set<String> responseNames)
Loads a DataSource from the specified csv file then wraps it in a dataset.
|
MutableDataset<T> |
CSVLoader.load(Path csvPath,
Set<String> responseNames,
String[] header)
Loads a DataSource from the specified csv file then wraps it in a dataset.
|
MutableDataset<T> |
CSVLoader.load(Path csvPath,
String responseName)
Loads a DataSource from the specified csv file then wraps it in a dataset.
|
MutableDataset<T> |
CSVLoader.load(Path csvPath,
String responseName,
String[] header)
Loads a DataSource from the specified csv file then wraps it in a dataset.
|
Modifier and Type | Method and Description |
---|---|
<T extends Output<T>> |
TransformerMap.transformDataset(Dataset<T> dataset)
Copies the supplied dataset and applies the transformers to each example in it.
|
<T extends Output<T>> |
TransformerMap.transformDataset(Dataset<T> dataset,
boolean densify)
Copies the supplied dataset and applies the transformers to each example in it.
|
Copyright © 2015–2021 Oracle and/or its affiliates. All rights reserved.