sustaining_gazes/matlab_version/face_validation/DeepLearnToolbox/DBN/rbmdown.m

4 lines
90 B
Mathematica
Raw Normal View History

2016-04-28 21:40:36 +02:00
function x = rbmdown(rbm, x)
x = sigm(repmat(rbm.b', size(x, 1), 1) + x * rbm.W);
end