Package | Description |
---|---|
gov.sandia.cognition.framework |
Provides the interfaces for the Cognitive Framework.
|
gov.sandia.cognition.framework.learning.converter |
Provides implementations of
CogxelConverter s. |
gov.sandia.cognition.framework.lite |
Provides a lightweight implementation of the Cognitive Framework.
|
Modifier and Type | Method and Description |
---|---|
CogxelState |
CogxelState.clone()
Clones this Cogxel state, returning a deep copy of the Cogxels.
|
CogxelState |
CognitiveModelState.getCogxels()
Gets the CogxelState.
|
Modifier and Type | Method and Description |
---|---|
PairType |
AbstractCogxelPairConverter.fromCogxels(CogxelState cogxels) |
java.lang.Boolean |
CogxelBooleanConverter.fromCogxels(CogxelState cogxels) |
DataType |
CogxelConverter.fromCogxels(CogxelState cogxels)
Converts from a CogxelState object to an object of type DataType.
|
java.lang.Double |
CogxelDoubleConverter.fromCogxels(CogxelState cogxels)
Converts from a CogxelState object to an object of type DataType.
|
Matrix |
CogxelMatrixConverter.fromCogxels(CogxelState cogxels)
Converts from a CogxelState object to an object of type DataType.
|
java.util.ArrayList<Vector> |
CogxelVectorCollectionConverter.fromCogxels(CogxelState cogxels)
Converts from a CogxelState object to an object of type DataType.
|
Vector |
CogxelVectorConverter.fromCogxels(CogxelState cogxels)
Converts from a CogxelState object to an object of type DataType.
|
WeightedInputOutputPair<InputType,OutputType> |
CogxelWeightedInputOutputPairConverter.fromCogxels(CogxelState cogxels)
Converts from a CogxelState object to an object of type DataType.
|
void |
CogxelBooleanConverter.toCogxels(java.lang.Boolean data,
CogxelState cogxels) |
void |
CogxelVectorCollectionConverter.toCogxels(java.util.Collection<Vector> data,
CogxelState cogxels)
Converts from an object of type DataType to an updated CogxelState.
|
void |
CogxelConverter.toCogxels(DataType data,
CogxelState cogxels)
Converts from an object of type DataType to an updated CogxelState.
|
void |
CogxelDoubleConverter.toCogxels(java.lang.Double data,
CogxelState cogxels)
Converts from an object of type DataType to an updated CogxelState.
|
void |
CogxelMatrixConverter.toCogxels(Matrix data,
CogxelState cogxels)
Converts from an object of type DataType to an updated CogxelState.
|
void |
AbstractCogxelPairConverter.toCogxels(PairType data,
CogxelState cogxels) |
void |
CogxelVectorConverter.toCogxels(Vector data,
CogxelState cogxels)
Converts from an object of type DataType to an updated CogxelState.
|
void |
CogxelWeightedInputOutputPairConverter.toCogxels(WeightedInputOutputPair<InputType,OutputType> data,
CogxelState cogxels)
Converts from an object of type DataType to an updated CogxelState.
|
Modifier and Type | Class and Description |
---|---|
class |
CogxelStateLite
The CogxelStateLite class implements a CogxelState to be used with the
CognitiveModelLite.
|
Constructor and Description |
---|
CogxelStateLite(CogxelState other)
Creates a copy of a CogxelStateLite
|