Click or drag to resize

PerceptronProcess Method

Process a set of inputs.

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

Parameters

input
Type: SystemSingle

Return Value

Type: Single
Remarks

The output signal is calculated by summing all of the inputs scaled by the corresponding weights stored in the neuron (which are set during the training), adding the final weight to that sum, and then passing that value into the activation function.

See Also