mirror of
https://gitcode.com/gh_mirrors/ope/OpenFace.git
synced 2026-05-14 19:27:56 +00:00
4 lines
89 B
Matlab
4 lines
89 B
Matlab
function x = rbmup(rbm, x)
|
|
x = sigm(repmat(rbm.c', size(x, 1), 1) + x * rbm.W');
|
|
end
|