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