sustaining_gazes/matlab_version/face_validation/DeepLearnToolbox/CAE/scaetrain.m

8 lines
270 B
Mathematica
Raw Normal View History

2016-04-28 21:40:36 +02:00
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