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.
|
Modifier and Type | Method and Description |
---|---|
static <InputType,FirstIntermediateType,SecondIntermediateType,OutputType> |
CompositeEvaluatorTriple.create(Evaluator<? super InputType,? extends FirstIntermediateType> first,
Evaluator<? super FirstIntermediateType,? extends SecondIntermediateType> second,
Evaluator<? super SecondIntermediateType,? extends OutputType> third)
A convenience method for creating composite evaluators.
|
Modifier and Type | Method and Description |
---|---|
CompositeEvaluatorTriple<InputType,TransformedInputType,TransformedOutputType,OutputType> |
InputOutputTransformedBatchLearner.learn(java.util.Collection<? extends InputOutputPair<? extends InputType,OutputType>> data)
Learn by first calling the input transformation learner on all the
input values and the output transformation on the output values.
|