Click or drag to resize
Accord.NET (logo)

DeepBeliefNetworkCreateMixedNetwork Method

Creates a Mixed-Bernoulli network.

Namespace:  Accord.Neuro.Networks
Assembly:  Accord.Neuro (in Accord.Neuro.dll) Version: 3.8.0
Syntax
public static DeepBeliefNetwork CreateMixedNetwork(
	IStochasticFunction visible,
	IStochasticFunction hidden,
	int inputsCount,
	params int[] hiddenNeurons
)
Request Example View Source

Parameters

visible
Type: Accord.Neuro.ActivationFunctionsIStochasticFunction
The IStochasticFunction to be used in the first visible layer.
hidden
Type: Accord.Neuro.ActivationFunctionsIStochasticFunction
The IStochasticFunction to be used in all other layers.
inputsCount
Type: SystemInt32
The number of inputs for the network.
hiddenNeurons
Type: SystemInt32
The number of hidden neurons in each layer.

Return Value

Type: DeepBeliefNetwork
See Also