Package | Description |
---|---|
gov.sandia.cognition.learning.algorithm.svm |
Provides implementations of Support Vector Machine (SVM) learning algorithms.
|
gov.sandia.cognition.learning.data |
Provides data set utilities for learning.
|
gov.sandia.cognition.learning.function.kernel |
Provides kernel functions.
|
gov.sandia.cognition.util |
Provides general utility classes.
|
Modifier and Type | Class and Description |
---|---|
protected class |
SuccessiveOverrelaxation.Entry
The
Entry class represents the data that the algorithm keeps
about each training example. |
Modifier and Type | Interface and Description |
---|---|
interface |
WeightedInputOutputPair<InputType,OutputType>
The
WeightedInputOutputPair class implements an additional
weighting term on an InputOutputPair , typically used to inform
learning algorithms of the relative weight between examples. |
interface |
WeightedTargetEstimatePair<TargetType,EstimateType>
Extends
TargetEstimatePair with an additional weight field. |
Modifier and Type | Class and Description |
---|---|
class |
DefaultWeightedInputOutputPair<InputType,OutputType>
A default implementation of the
WeightedInputOutputPair interface. |
class |
DefaultWeightedTargetEstimatePair<TargetType,EstimateType>
Extends
TargetEstimatePair with an additional weight field. |
class |
DefaultWeightedValueDiscriminant<ValueType>
An implementation of
ValueDiscriminantPair that stores a double
as the discriminant. |
Modifier and Type | Class and Description |
---|---|
class |
WeightedKernel<InputType>
The
WeightedKernel class implements a kernel that takes another
kernel, evaluates it, and then the result is rescaled by a given weight. |
Modifier and Type | Interface and Description |
---|---|
interface |
WeightedPair<FirstType,SecondType>
The
WeightedPair interface defines an extension of a normal
Pair that includes an additional weight. |
interface |
WeightedValue<ValueType>
Interface for a wrapper for a value that associates a weight with it.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractWeighted
Container class for a Weighted object
|
class |
DefaultWeightedPair<FirstType,SecondType>
The
DefaultWeightedPair class extends the DefaultPair class
to add a weight to the pair. |
class |
DefaultWeightedValue<ValueType>
The
WeightedValue class implements a simple generic container
that holds a value and a weight assigned to the value. |