Package | Description |
---|---|
gov.sandia.cognition.learning.algorithm.ensemble |
Provides ensemble methods.
|
gov.sandia.cognition.learning.data |
Provides data set utilities for learning.
|
Modifier and Type | Field and Description |
---|---|
protected java.util.ArrayList<DefaultWeightedInputOutputPair<InputType,java.lang.Boolean>> |
AdaBoost.weightedData
An array list containing the weighted version of the data.
|
protected java.util.ArrayList<DefaultWeightedInputOutputPair<InputType,CategoryType>> |
MultiCategoryAdaBoost.weightedData
An array list containing the weighted version of the data.
|
Modifier and Type | Method and Description |
---|---|
java.util.ArrayList<DefaultWeightedInputOutputPair<InputType,java.lang.Boolean>> |
AdaBoost.getWeightedData()
Gets the weighted version of the data.
|
Modifier and Type | Method and Description |
---|---|
protected void |
AdaBoost.setWeightedData(java.util.ArrayList<DefaultWeightedInputOutputPair<InputType,java.lang.Boolean>> weightedData)
Sets the weighted version of the data.
|
Modifier and Type | Method and Description |
---|---|
static <InputType,OutputType> |
DefaultWeightedInputOutputPair.create()
Convenience method to create a new, empty
DefaultWeightedInputOutputPair . |
static <InputType,OutputType> |
DefaultWeightedInputOutputPair.create(InputType input,
OutputType output,
double weight)
Convenience method to create a new
DefaultWeightedInputOutputPair . |
Modifier and Type | Method and Description |
---|---|
static <InputType,OutputType> |
DefaultWeightedInputOutputPair.mergeCollections(java.util.Collection<InputType> inputs,
java.util.Collection<OutputType> outputs,
java.util.Collection<? extends java.lang.Number> weights)
Takes two Collections of data and creates a single
ArrayList
|