Constructive aggregation via out-performance contiguity This method denotes the idea of rearranging a portfolio of models (base_ensemble) into different overlapping subsets. These subsets are aggregated (aggregate_subsets) into combined opinions, forming new models. These models are combined into a final decision through aggregate_hypos.
base_ensembleobject of class base_ensemble-class.
It contains the base models used that can be used for predicting
new data or forecasting future values;
committee_seta list of ids -- the individual models of each subset;
formformula;
specsobject of class model_specs-class. Contains
the parameter setting information for training the
base models;
lambdawindow size used to average loss. How far to to back in time.
alphacontiguity size. How long should a subset outperform other for it to be considered in the committee
recent_seriesthe most recent lambda observations.
out_of_bagOut of bag observations used to compute the subsets
aggregate_subsetsaggregation approach for the set of subsets.
aggregate_hyposfinal aggregation approach. How should the combined opinions be aggregated.