Package | Description |
---|---|
gov.sandia.cognition.framework |
Provides the interfaces for the Cognitive Framework.
|
gov.sandia.cognition.framework.concurrent |
Provides a concurrent implementation of teh Cognitive Framework.
|
gov.sandia.cognition.framework.learning |
Provides a mechanism for putting learned objects into the Cognitive
Framework.
|
gov.sandia.cognition.framework.lite |
Provides a lightweight implementation of the Cognitive Framework.
|
Modifier and Type | Method and Description |
---|---|
CognitiveModelInput |
CognitiveModelState.getInput()
Gets the input to the model for this state.
|
Modifier and Type | Method and Description |
---|---|
void |
CognitiveModelState.setInput(CognitiveModelInput input)
Sets the input for this model state.
|
void |
CognitiveModel.update(CognitiveModelInput input)
Updates the model by updating all the modules using the given input.
|
Modifier and Type | Method and Description |
---|---|
void |
MultithreadedCognitiveModel.update(CognitiveModelInput input)
Updates the state of the model from the new input.
|
Modifier and Type | Method and Description |
---|---|
CognitiveModuleFactory |
CognitiveModuleFactoryLearner.learn(CognitiveModel model,
java.util.Collection<? extends java.util.Collection<? extends CognitiveModelInput>> datasets)
Learns a new CognitiveModuleFactory for the given CognitiveModuleFactory
containing all of the modules that will be used before the created
module factory along with the example data used to learn the factory
from.
|
EvaluatorBasedCognitiveModuleFactory<InputType,OutputType> |
EvaluatorBasedCognitiveModuleFactoryLearner.learn(CognitiveModel model,
java.util.Collection<? extends java.util.Collection<? extends CognitiveModelInput>> datasets)
Learns a new EvaluatorBasedCognitiveModuleFactory
|
Modifier and Type | Class and Description |
---|---|
class |
ArrayBasedCognitiveModelInput
The ArrayBasedCognitiveModelInput class implements a CognitiveModelInput
that is used by the ArrayBasedPerceptionModule.
|
class |
VectorBasedCognitiveModelInput
Vector-based cognitive model input used by VectorBasedPerceptionModule.
|
Modifier and Type | Method and Description |
---|---|
CognitiveModelInput |
CognitiveModelLiteState.getInput()
Gets the input to the model for this state.
|
Modifier and Type | Method and Description |
---|---|
void |
CognitiveModelLiteState.setInput(CognitiveModelInput input)
Sets the input for this model state.
|
void |
CognitiveModelLite.update(CognitiveModelInput input)
Updates the state of the model from the new input.
|