7 lines
226 B
Mathematica
7 lines
226 B
Mathematica
|
% implements Error_Rate, returns nothing but prints the percentage of
|
||
|
% predicted labels that are incorrrect.
|
||
|
function [] = Error_Rate(predictions, labels)
|
||
|
|
||
|
% TODO: compute error rate and print it out
|
||
|
|
||
|
end % Function end
|