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

Used to specify the number of nodes for the hidden layer

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

Syntax

C#
public int HiddenCount { get; set; }

Remarks

It is not necessary to specify a number of hidden nodes. By default, if a user does not specify a number of hidden nodes, then the number of hidden nodes is automatically set (when committed) to:
(# of Input Nodes + # of Output Nodes) / 2

Note
This value can ONLY be set BEFORE the neural network is committed. Once the neural network has been committed, any attempts to set this will have no effect.

See Also