[This is preliminary documentation and is subject to change.]

Gets the input to hidden layer weight matrix

Namespace: Clarion.Framework.Templates
Assembly: ClarionLibrary (in ClarionLibrary.dll) Version: 6.1.1.0 (6.1.1.0)

Syntax

C#
protected Dictionary<Guid, List<double>> InputToHiddenWeights { get; }

Remarks

The dWeights linking the input and hidden layers are stored within the dictionary as follows:
Key = The world ID of a world object in the input layer
Value = A list of dWeights linking to all of the hidden layer nodes
Note
The list of dWeights stored within the "Value container" of the dictionary are stored as a standard indexable list where the indexes of that list correlate exactly to the indexes of the hidden nodes in Hidden

See Also