(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| """ An rbm implementation for TensorFlow, based closely on the one in Theano """ | |
| import tensorflow as tf | |
| import math | |
| def sample_prob(probs): | |
| """Takes a tensor of probabilities (as from a sigmoidal activation) | |
| and samples from all the distributions""" | |
| return tf.nn.relu( | |
| tf.sign( |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.