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

Gets the hidden to output layer weight matrix

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

Syntax

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

Remarks

The dWeights linking the hidden and output layers are stored within the list as follows:
Index = Correlates to the the index of the hidden nodes in Hidden
Inner Dictionary Key = The world ID of a world object in the output layer
Inner Dictionary Value = The weight linking the hidden node to the output node (i.e., world object) with the specified world ID

See Also