mirror of
https://gitcode.com/gh_mirrors/ope/OpenFace.git
synced 2026-05-14 03:12:42 +00:00
4 lines
90 B
Matlab
4 lines
90 B
Matlab
function x = rbmdown(rbm, x)
|
|
x = sigm(repmat(rbm.b', size(x, 1), 1) + x * rbm.W);
|
|
end
|