mirror of
https://gitcode.com/gh_mirrors/ope/OpenFace.git
synced 2025-12-30 13:02:30 +00:00
7 lines
184 B
Matlab
7 lines
184 B
Matlab
function [er, bad] = nntest(nn, x, y)
|
|
labels = nnpredict(nn, x);
|
|
[dummy, expected] = max(y,[],2);
|
|
bad = find(labels ~= expected);
|
|
er = numel(bad) / size(x, 1);
|
|
end
|