Click or drag to resize
Accord.NET (logo)

DeepBeliefNetworkPush Method (Int32, IStochasticFunction, IStochasticFunction)

Inserts a new layer at the end of this network.

Namespace:  Accord.Neuro.Networks
Assembly:  Accord.Neuro (in Accord.Neuro.dll) Version: 3.8.0
Syntax
public void Push(
	int neurons,
	IStochasticFunction visibleFunction,
	IStochasticFunction hiddenFunction
)
Request Example View Source

Parameters

neurons
Type: SystemInt32
The number of neurons in the layer.
visibleFunction
Type: Accord.Neuro.ActivationFunctionsIStochasticFunction
The activation function which should be used by the visible neurons.
hiddenFunction
Type: Accord.Neuro.ActivationFunctionsIStochasticFunction
The activation function which should be used by the hidden neurons.
See Also