language-icon Old Web
English
Sign In

Deep belief network

In machine learning, a deep belief network (DBN) is a generative graphical model, or alternatively a class of deep neural network, composed of multiple layers of latent variables ('hidden units'), with connections between the layers but not between units within each layer. In machine learning, a deep belief network (DBN) is a generative graphical model, or alternatively a class of deep neural network, composed of multiple layers of latent variables ('hidden units'), with connections between the layers but not between units within each layer. When trained on a set of examples without supervision, a DBN can learn to probabilistically reconstruct its inputs. The layers then act as feature detectors. After this learning step, a DBN can be further trained with supervision to perform classification. DBNs can be viewed as a composition of simple, unsupervised networks such as restricted Boltzmann machines (RBMs) or autoencoders, where each sub-network's hidden layer serves as the visible layer for the next. An RBM is an undirected, generative energy-based model with a 'visible' input layer and a hidden layer and connections between but not within layers. This composition leads to a fast, layer-by-layer unsupervised training procedure, where contrastive divergence is applied to each sub-network in turn, starting from the 'lowest' pair of layers (the lowest visible layer is a training set). The observation that DBNs can be trained greedily, one layer at a time, led to one of the first effective deep learning algorithms.:6 Overall, there are many attractive implementations and uses of DBNs in real-life applications and scenarios (e.g., electroencephalography, drug discovery). The training method for RBMs proposed by Geoffrey Hinton for use with training 'Product of Expert' models is called contrastive divergence (CD). CD provides an approximation to the maximum likelihood method that would ideally be applied for learning the weights. In training a single RBM, weight updates are performed with gradient descent via the following equation: w i j ( t + 1 ) = w i j ( t ) + η ∂ log ⁡ ( p ( v ) ) ∂ w i j {displaystyle w_{ij}(t+1)=w_{ij}(t)+eta {frac {partial log(p(v))}{partial w_{ij}}}} where, p ( v ) {displaystyle p(v)} is the probability of a visible vector, which is given by p ( v ) = 1 Z ∑ h e − E ( v , h ) {displaystyle p(v)={frac {1}{Z}}sum _{h}e^{-E(v,h)}} . Z {displaystyle Z} is the partition function (used for normalizing) and E ( v , h ) {displaystyle E(v,h)} is the energy function assigned to the state of the network. A lower energy indicates the network is in a more 'desirable' configuration. The gradient ∂ log ⁡ ( p ( v ) ) ∂ w i j {displaystyle {frac {partial log(p(v))}{partial w_{ij}}}} has the simple form ⟨ v i h j ⟩ data − ⟨ v i h j ⟩ model {displaystyle langle v_{i}h_{j} angle _{ ext{data}}-langle v_{i}h_{j} angle _{ ext{model}}} where ⟨ ⋯ ⟩ p {displaystyle langle cdots angle _{p}} represent averages with respect to distribution p {displaystyle p} . The issue arises in sampling ⟨ v i h j ⟩ model {displaystyle langle v_{i}h_{j} angle _{ ext{model}}} because this requires extended alternating Gibbs sampling. CD replaces this step by running alternating Gibbs sampling for n {displaystyle n} steps (values of n = 1 {displaystyle n=1} perform well). After n {displaystyle n} steps, the data are sampled and that sample is used in place of ⟨ v i h j ⟩ model {displaystyle langle v_{i}h_{j} angle _{ ext{model}}} . The CD procedure works as follows: Once an RBM is trained, another RBM is 'stacked' atop it, taking its input from the final trained layer. The new visible layer is initialized to a training vector, and values for the units in the already-trained layers are assigned using the current weights and biases. The new RBM is then trained with the procedure above. This whole process is repeated until the desired stopping criterion is met. Although the approximation of CD to maximum likelihood is crude (does not follow the gradient of any function), it is empirically effective.

[ "Deep learning", "Artificial neural network", "restrict boltzmann machine", "deep belief nets", "Convolutional Deep Belief Networks" ]
Parent Topic
Child Topic
    No Parent Topic