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

4 lines
89 B
Mathematica
Raw Normal View History

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