|
DeepBeliefNetworkGenerateOutput Method (Double, Int32)
|
Samples an output vector from the network
given an input vector.
Namespace:
Accord.Neuro.Networks
Assembly:
Accord.Neuro (in Accord.Neuro.dll) Version: 3.8.0
Syntax public double[] GenerateOutput(
double[] input,
int layerIndex
)
Public Function GenerateOutput (
input As Double(),
layerIndex As Integer
) As Double()
Request Example
View SourceParameters
- input
- Type: SystemDouble
An input vector. - layerIndex
- Type: SystemInt32
The index of the layer.
Return Value
Type:
Double
A possible output considering the
stochastic activations of the network.
See Also