Click or drag to resize

LayerProcess Method (Layer, Single)

Process the input values with a set of layers.

Namespace:  RavingBots.MagicGestures.AI.Neural.Classic
Assembly:  Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntax
C#
public static void Process(
	Layer[] layers,
	float[] input
)

Parameters

layers
Type: RavingBots.MagicGestures.AI.Neural.ClassicLayer
The set of layers to use.
input
Type: SystemSingle
The inputs to feed to the first layer.
Remarks
The inputs are chained: input is used as the first layer's inputs, the second layer's inputs are the first layer's outputs, and so on.
See Also