Package | Description |
---|---|
gov.sandia.cognition.learning.algorithm |
Provides general interfaces for learning algorithms.
|
Modifier and Type | Method and Description |
---|---|
static <InputType,IntermediateType,OutputType> |
CompositeBatchLearnerPair.create(BatchLearner<? super java.util.Collection<? extends InputType>,? extends Evaluator<? super InputType,? extends IntermediateType>> firstLearner,
BatchLearner<? super java.util.Collection<? extends IntermediateType>,? extends Evaluator<? super IntermediateType,? extends OutputType>> secondLearner)
Creates a new
CompositeBatchLearnerPair from the given learners. |
static <InputType,IntermediateType,OutputType> |
CompositeBatchLearnerPair.createInputTransformed(Evaluator<? super InputType,? extends IntermediateType> inputTransform,
BatchLearner<? super java.util.Collection<? extends IntermediateType>,? extends Evaluator<? super IntermediateType,? extends OutputType>> learner)
Creates a new
CompositeBatchLearnerPair from the given input
transform and learner. |
static <InputType,IntermediateType,OutputType> |
CompositeBatchLearnerPair.createOutputTransformed(BatchLearner<? super java.util.Collection<? extends InputType>,? extends Evaluator<? super InputType,? extends IntermediateType>> learner,
Evaluator<? super IntermediateType,? extends OutputType> outputTransform)
Creates a new
CompositeBatchLearnerPair from the given learner
and output transform.. |