3 lines
90 B
Matlab
3 lines
90 B
Matlab
function x = rbmdown(rbm, x)
|
|
x = sigm(repmat(rbm.b', size(x, 1), 1) + x * rbm.W);
|
|
end
|