December 2017
Intermediate to advanced
536 pages
14h 23m
English
Let's see the expressions that we will need to make our RBM:
Forward pass: The information at visible units (V) is passed via weights (W) and biases (c) to the hidden units (h0). The hidden unit may fire or not depending on the stochastic probability (σ is stochastic probability):
Backward pass: The hidden unit representation (h0) is then passed back to the visible units through the same weights W, but different bias c, where they reconstruct the input. Again, the input is sampled:
These two passes are repeated for k-steps or till the convergence is reached. According to researchers, k=1 gives good results, so we will keep k = 1.
The joint configuration of the visible vector V and ...
Read now
Unlock full access