1 %> @brief Estimation Aggregator - combines @ref
estimato objects together.
4 %> =0. Minimum maximum probability. If not reached, all probabilities of item will be flattened to zero.
10 o.classtitle = 'Estimation Aggregator';
16 methods(Access=protected)
17 function dd = apply_threshold(o, dd)
20 MM = max(dd(i).X, [], 2);
21 idxs = MM < o.threshold;
22 dd(i).X(idxs, :) = zeros(sum(idxs), dd(i).nf);
29 function out = do_use(o, dd)
Estimation Aggregator - combines estimato objects together.
Dataset representing estimation.