mirror of
https://gitcode.com/gh_mirrors/ope/OpenFace.git
synced 2026-05-14 19:27:56 +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
|