Samiksha Jaiswal (Editor)

Restricted Boltzmann machine

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Restricted Boltzmann machine

A restricted Boltzmann machine (RBM) is a generative stochastic artificial neural network that can learn a probability distribution over its set of inputs.

Contents

RBMs were initially invented under the name Harmonium by Paul Smolensky in 1986, and rose to prominence after Geoffrey Hinton and collaborators invented fast learning algorithms for them in the mid-2000s. RBMs have found applications in dimensionality reduction, classification, collaborative filtering, feature learning and topic modelling. They can be trained in either supervised or unsupervised ways, depending on the task.

As their name implies, RBMs are a variant of Boltzmann machines, with the restriction that their neurons must form a bipartite graph: a pair of nodes from each of the two groups of units (commonly referred to as the "visible" and "hidden" units respectively) may have a symmetric connection between them; and there are no connections between nodes within a group. By contrast, "unrestricted" Boltzmann machines may have connections between hidden units. This restriction allows for more efficient training algorithms than are available for the general class of Boltzmann machines, in particular the gradient-based contrastive divergence algorithm.

Restricted Boltzmann machines can also be used in deep learning networks. In particular, deep belief networks can be formed by "stacking" RBMs and optionally fine-tuning the resulting deep network with gradient descent and backpropagation.

Structure

The standard type of RBM has binary-valued (Boolean/Bernoulli) hidden and visible units, and consists of a matrix of weights W = ( w i , j ) (size m×n) associated with the connection between hidden unit h j and visible unit v i , as well as bias weights (offsets) a i for the visible units and b j for the hidden units. Given these, the energy of a configuration (pair of boolean vectors) (v,h) is defined as

E ( v , h ) = i a i v i j b j h j i j v i w i , j h j

or, in matrix notation,

E ( v , h ) = a T v b T h v T W h

This energy function is analogous to that of a Hopfield network. As in general Boltzmann machines, probability distributions over hidden and/or visible vectors are defined in terms of the energy function:

P ( v , h ) = 1 Z e E ( v , h )

where Z is a partition function defined as the sum of e E ( v , h ) over all possible configurations (in other words, just a normalizing constant to ensure the probability distribution sums to 1). Similarly, the (marginal) probability of a visible (input) vector of booleans is the sum over all possible hidden layer configurations:

P ( v ) = 1 Z h e E ( v , h )

Since the RBM has the shape of a bipartite graph, with no intra-layer connections, the hidden unit activations are mutually independent given the visible unit activations and conversely, the visible unit activations are mutually independent given the hidden unit activations. That is, for m visible units and n hidden units, the conditional probability of a configuration of the visible units v, given a configuration of the hidden units h, is

P ( v | h ) = i = 1 m P ( v i | h ) .

Conversely, the conditional probability of h given v is

P ( h | v ) = j = 1 n P ( h j | v ) .

The individual activation probabilities are given by

P ( h j = 1 | v ) = σ ( b j + i = 1 m w i , j v i ) and P ( v i = 1 | h ) = σ ( a i + j = 1 n w i , j h j )

where σ denotes the logistic sigmoid.

The visible units of RBM can be multinomial, although the hidden units are Bernoulli. In this case, the logistic function for visible units is replaced by the softmax function

P ( v i k = 1 | h ) = exp ( a i k + Σ j W i j k h j ) Σ k = 1 K exp ( a i k + Σ j W i j k h j )

where K is the number of discrete values that the visible values have. They are applied in topic modeling, and recommender systems.

Relation to other models

Restricted Boltzmann machines are a special case of Boltzmann machines and Markov random fields. Their graphical model corresponds to that of factor analysis.

Training algorithm

Restricted Boltzmann machines are trained to maximize the product of probabilities assigned to some training set V (a matrix, each row of which is treated as a visible vector v ),

arg max W v V P ( v )

or equivalently, to maximize the expected log probability of a training sample v selected randomly from V :

arg max W E [ log P ( v ) ]

The algorithm most often used to train RBMs, that is, to optimize the weight vector W , is the contrastive divergence (CD) algorithm due to Hinton, originally developed to train PoE (product of experts) models. The algorithm performs Gibbs sampling and is used inside a gradient descent procedure (similar to the way backpropagation is used inside such a procedure when training feedforward neural nets) to compute weight update.

The basic, single-step contrastive divergence (CD-1) procedure for a single sample can be summarized as follows:

  1. Take a training sample v, compute the probabilities of the hidden units and sample a hidden activation vector h from this probability distribution.
  2. Compute the outer product of v and h and call this the positive gradient.
  3. From h, sample a reconstruction v' of the visible units, then resample the hidden activations h' from this. (Gibbs sampling step)
  4. Compute the outer product of v' and h' and call this the negative gradient.
  5. Let the update to the weight matrix W be the positive gradient minus the negative gradient, times some learning rate: Δ W = ϵ ( v h T v h T ) .
  6. Update the biases a and b analogously: Δ a = ϵ ( v v ) , Δ b = ϵ ( h h ) .

A Practical Guide to Training RBMs written by Hinton can be found on his homepage.

References

Restricted Boltzmann machine Wikipedia