Package | Description |
---|---|
gov.sandia.cognition.evaluator |
Provides interfaces and classes to do with the
Evaluator interface. |
gov.sandia.cognition.learning.algorithm |
Provides general interfaces for learning algorithms.
|
gov.sandia.cognition.learning.algorithm.regression |
Provides regression algorithms, such as Linear Regression.
|
Modifier and Type | Method and Description |
---|---|
static <InputType,IntermediateType,OutputType> |
CompositeEvaluatorPair.create(Evaluator<? super InputType,? extends IntermediateType> first,
Evaluator<? super IntermediateType,? extends OutputType> second)
A convenience method for creating composite evaluators.
|
Modifier and Type | Method and Description |
---|---|
CompositeEvaluatorPair<InputType,IntermediateType,OutputType> |
CompositeBatchLearnerPair.learn(java.util.Collection<? extends InputType> data)
Learn by calling the first learner on all the input values.
|
Modifier and Type | Class and Description |
---|---|
static class |
LogisticRegression.Function
Class that is a linear discriminant, followed by a sigmoid function.
|