1 %> @brief REPeated Train-Test
3 %> Different behaviuors and applications implemented in descendants.
5 %> Typically, @c block_mold and @c log_mold will contain several elements and results will be 2D or 3D log matrices.
10 %> Cell array. Blocks to be trained-tested.
12 %> Cell array. Molds
for the recording.
16 %> Block to post-process the estimation issued by the classifier. Examples:
23 properties %(SetAccess=
protected)
24 %> Mounted at
"runtime"
26 %> Mounted at
"runtime"
33 o.classtitle = 'Repeated Train-Test';
39 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
40 %%%%% These are tools to be used by descendant classes
41 methods(Access=protected)
42 %> Checks validity of post_processors and boots them.
44 %> Please note that this will pass if either or both are empty.
46 %> These is a tool to be used by descendant classes,
as required.
47 function o = boot_postpr(o)
48 % Checks if postpr_est is ok; boots the post-processors
50 % Just testing if I still need to worry about booting
52 if ~isempty(o.postpr_est)
53 o.postpr_est = o.postpr_est.boot();
56 if ~isempty(o.postpr_test)
57 o.postpr_test = o.postpr_test.boot();
Group Aggregator - Classes - Vote.
Block that resolves estimato posterior probabilities into classes.
function assert_decider(in obj)
Group Aggregator - Classes - First row.
Analysis Session (AS) base class.
Cascade block: sequence of blocks represented by a block.