Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
data_mining:neural_network:rbm [2017/04/22 13:01] – angelegt phreazer | data_mining:neural_network:rbm [2017/07/30 14:59] (current) – [Restricted Boltzmann Machines] phreazer | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Restricted | + | ====== Restricted |
+ | * Boltzmann machine, with restriction, | ||
+ | * Shallow, two-layer structure | ||
+ | * Building block for deep belief nets | ||
+ | |||
+ | * Unsupervised learning | ||
+ | * Dim reduction | ||
+ | * No labels needed | ||
+ | * Autoencoder | ||
+ | |||
+ | ===== Programming ===== | ||
+ | |||
+ | Units in an RBM have binary states: they' | ||
+ | |||
+ | visible_state_to_hidden_probabilities | ||
+ | |||
+ | When we have the (binary) state of all visible units in an RBM, the conditional probability for each hidden unit to turn on (conditional on the states of the visible units) can be calculated. | ||
+ | |||
+ | Contrastive Divergence gradient estimator with 1 full Gibbs update, a.k.a. CD-1 | ||
+ | |||
+ | one where every time after calculating a conditional probability for a unit, we sample a state for the unit from that conditional probability (using the functionsample_bernoulli), | ||
+ | |||
+ | we'll sample a binary state for the hidden units conditional on the data; we'll sample a binary state for the visible units conditional on that binary hidden state (this is sometimes called the " |