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