Click or drag to resize
Accord.NET (logo)

DeepBeliefNetwork Class

Deep Belief Network.
Inheritance Hierarchy
SystemObject
  Accord.NeuroNetwork
    Accord.NeuroActivationNetwork
      Accord.Neuro.NetworksDeepBeliefNetwork

Namespace:  Accord.Neuro.Networks
Assembly:  Accord.Neuro (in Accord.Neuro.dll) Version: 3.8.0
Syntax
[SerializableAttribute]
public class DeepBeliefNetwork : ActivationNetwork
Request Example View Source

The DeepBeliefNetwork type exposes the following members.

Constructors
Properties
  NameDescription
Public propertyInputsCount
Network's inputs count.
(Inherited from Network.)
Public propertyLayers
Network's layers.
(Inherited from Network.)
Public propertyMachines
Gets the Restricted Boltzmann Machines on each layer of this deep network.
Public propertyOutput
Network's output vector.
(Inherited from Network.)
Public propertyOutputCount
Gets the number of output neurons in the network (the size of the computed output vectors).
Top
Methods
  NameDescription
Public methodCompute(Double)
Computes the network's outputs for a given input.
(Overrides NetworkCompute(Double).)
Public methodCompute(Double, Int32)
Computes the network's outputs for a given input.
Public methodStatic memberCreateGaussianBernoulli
Creates a Gaussian-Bernoulli network.
Public methodStatic memberCreateMixedNetwork
Creates a Mixed-Bernoulli network.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGenerateInput
Samples an input vector from the network given an output vector.
Public methodGenerateOutput(Double)
Samples an output vector from the network given an input vector.
Public methodGenerateOutput(Double, Int32)
Samples an output vector from the network given an input vector.
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodStatic memberLoad(Stream)
Loads a network from a stream.
Public methodStatic memberLoad(String)
Loads a network from a file.
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodPop
Removes the last layer from the network.
Public methodPush(Int32)
Inserts a new layer at the end of this network.
Public methodPush(RestrictedBoltzmannMachine)
Stacks a new Boltzmann Machine at the end of this network.
Public methodPush(Int32, IStochasticFunction)
Inserts a new layer at the end of this network.
Public methodPush(Int32, IStochasticFunction, IStochasticFunction)
Inserts a new layer at the end of this network.
Public methodRandomize
Randomize layers of the network.
(Inherited from Network.)
Public methodReconstruct(Double)
Reconstructs a input vector for a given output.
Public methodReconstruct(Double, Int32)
Reconstructs a input vector using the output vector of a given layer.
Public methodSave(Stream)
Saves the network to a stream.
Public methodSave(String)
Saves the network to a stream.
Public methodSetActivationFunction
Set new activation function for all neurons of the network.
(Inherited from ActivationNetwork.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodUpdateVisibleWeights
Updates the weights of the visible layers by copying the reverse of the weights in the hidden layers.
Top
Fields
  NameDescription
Protected fieldinputsCount
Network's inputs count.
(Inherited from Network.)
Protected fieldlayers
Network's layers.
(Inherited from Network.)
Protected fieldlayersCount
Network's layers count.
(Inherited from Network.)
Protected fieldoutput
Network's output vector.
(Inherited from Network.)
Top
Extension Methods
  NameDescription
Public Extension MethodHasMethod
Checks whether an object implements a method with the given name.
(Defined by ExtensionMethods.)
Public Extension MethodIsEqual
Compares two objects for equality, performing an elementwise comparison if the elements are vectors or matrices.
(Defined by Matrix.)
Public Extension MethodTo(Type)Overloaded.
Converts an object into another type, irrespective of whether the conversion can be done at compile time or not. This can be used to convert generic types to numeric types during runtime.
(Defined by ExtensionMethods.)
Public Extension MethodToTOverloaded.
Converts an object into another type, irrespective of whether the conversion can be done at compile time or not. This can be used to convert generic types to numeric types during runtime.
(Defined by ExtensionMethods.)
Top
Remarks
The Deep Belief Network can be seen as a collection of stacked Restricted Boltzmann Machines disposed as layers of a network. In turn, the whole network can be seen as an stochastic activation network in which the neurons activate within some given probability.
See Also