sustaining_gazes/matlab_version/face_validation/DeepLearnToolbox/DBN/rbmup.m
2016-04-28 15:40:36 -04:00

3 lines
89 B
Matlab

function x = rbmup(rbm, x)
x = sigm(repmat(rbm.c', size(x, 1), 1) + x * rbm.W');
end