1 %> @brief Shows best parameters at each
8 o.classtitle = 'Grid Search Log Report';
14 methods(Access=protected)
15 function out = do_use(o, log)
17 out.html = ['<h1>', log.title, '</h1>', 10, o.get_reportbody(log)];
18 % out.title = log.get_description();
24 %> Generates a table with the best in each architecture, with its respective time and confidence interval
25 %> @param sov sovalues
object
26 function s = get_reportbody(o, log)
33 coords = ch.use(r.values);
34 rr = r.values(coords{:}).rates;
35 s = cat(2, s,
'<p>', r.
title, sprintf(
' (<font color=blue>classification rate: %.4g%% ± %.4g%%</font>)', ...
36 mean(rr), std(rr)), ...
37 '</p>', 10,
'<ul>', 10); % This is supposed to contain the iteration and move indexes
38 for j = 1:numel(coords)
39 s = cat(2, s, '<li>', r.ax(j).legends{coords{j}},
'</li>', 10);
41 s = cat(2, s,
'</ul>');
Log generated by a gridsearch.
Shows best parameters at each.
Generated by irreport, carries HTML contents.