# HG changeset patch # User James Bergstra # Date 1282672286 14400 # Node ID 78b5bdf967f614ff548f0d29e234e077b02e6b76 # Parent 5badf36a6daf8f033e95f86cb59faa9779674688 mcRBM - removed references to dropped 'P' matrix diff -r 5badf36a6daf -r 78b5bdf967f6 pylearn/algorithms/mcRBM.py --- a/pylearn/algorithms/mcRBM.py Tue Aug 24 13:50:26 2010 -0400 +++ b/pylearn/algorithms/mcRBM.py Tue Aug 24 13:51:26 2010 -0400 @@ -107,7 +107,6 @@ K covariance variables. The mcRBM is parametrized by 5 variables: - - `P`, a matrix (probably sparse) of pooling (F x K) - `U`, a matrix whose rows are visible covariance directions (I x F) - `W`, a matrix whose rows are visible mean directions (I x J) - `b`, a vector of hidden covariance biases (K) @@ -197,7 +196,6 @@ import numpy from theano import function, shared, dot from theano import tensor as TT -import theano.sparse #installs the sparse shared var handler floatX = theano.config.floatX from pylearn.sampling.hmc import HMC_sampler