4 lines
89 B
Mathematica
4 lines
89 B
Mathematica
|
function x = rbmup(rbm, x)
|
||
|
x = sigm(repmat(rbm.c', size(x, 1), 1) + x * rbm.W');
|
||
|
end
|