mirror of
https://gitcode.com/gh_mirrors/ope/OpenFace.git
synced 2026-05-14 11:17:53 +00:00
8 lines
270 B
Matlab
8 lines
270 B
Matlab
function scae = scaetrain(scae, x, opts)
|
|
%TODO: Transform x through scae{1} into new x. Only works for a single PAE.
|
|
% for i=1:numel(scae)
|
|
% scae{i} = paetrain(scae{i}, x, opts);
|
|
% end
|
|
scae{1} = caetrain(scae{1}, x, opts);
|
|
|
|
end |