root/library/doc/tutorial/02userguide_estim.dox @ 944

Revision 944, 10.5 kB (checked in by smidl, 14 years ago)

Doc + new examples

Line 
1/*!
2\page userguide_estim BDM Use - Estimation and Bayes Rule
3
4Baysian theory is predominantly used in system identification, or estimation problems.
5This section is concerned with recursive estimation, as implemneted in prepared scenario \c estimator.
6
7The function of the \c estimator is graphically illustrated:
8\dot
9digraph estimation{
10        node [shape=box];
11        {rank="same"; "Data Source"; "Bayesian Model"}
12        "Data Source" -> "Bayesian Model" [label="data"];
13        "Bayesian Model" -> "Result Logger" [label="estimation\n result"];
14        "Data Source" -> "Result Logger" [label="Simulated\n data"];
15}
16\enddot
17
18Here,
19\li Data Source is an object (class DS) providing sequential data, \f$ [d_1, d_2, \ldots d_t] \f$.
20\li Bayesian Model is an object (class BM) performing Bayesian filtering,
21\li Result Logger is an object (class logger) dedicated to storing important data from the experiment.
22
23Since objects  datasource and the logger has already been introduced in section \ref userguide, it remains to introduce
24object \c Bayesian \c Model (bdm::BM).
25
26\section ug2_theory Bayes rule and estimation
27The object bdm::BM is basic software image of the Bayes rule:
28\f[ f(x_t|d_1\ldots d_t) \propto f(d_t|x_t,d_1\ldots d_{t-1}) f(x_t| d_1\ldots d_{t-1}) \f]
29
30Since this operation can not be defined universally, the object is defined as abstract class with methods for:
31 - <b> Bayes rule </b> as defined above, operation bdm::BM::bayes() which expects to get the current data record \c dt, \f$ d_t \f$
32 - <b> evidence </b> i.e. numerical value of \f$ f(d_t|d_1\ldots d_{t-1})\f$ as a typical side-product, since it is required in denominator of the above formula.
33   For some models, computation of this value may require extra effort, and can be swithed off.
34 - <b> prediction </b> the object has enough information to create the one-step ahead predictor, i.e. \f[ f(d_{t+1}| d_1 \ldots d_{t}), \f]
35       
36Implementation of these operations is heavily dependent on the specific class of prior pdf, or its approximations. We can identify only a few principal approaches to this problem. For example, analytical estimation which is possible within sufficient the Exponential Family, or estimation when both prior and posterior are approximated by empirical densities.
37These approaches are first level of descendants of class \c BM, classes bdm::BMEF and bdm::PF, repectively.
38
39\section ug2_arx_basic Estimation of ARX models
40
41Autoregressive models has already been introduced in \ref ug_arx_sim where their simulator has been presented.
42We will use results of simulation of the ARX datasource defined there to provide data for estimation using MemDS.
43
44The following code is from bdmtoolbox/tutorial/userguide/arx_basic_example.m
45\code
46A1.class = 'ARX';
47A1.rv = y;
48A1.rgr = RVtimes([y,y],[-3,-1]) ;
49A1.log_level = 'logbounds,logevidence';
50\endcode
51This is the minimal configuration of an ARX estimator.
52
53The first three fileds are self explanatory, they identify which data are predicted (field \c rv) and which are in regressor (field \c rgr).
54The field \c log_level is a string of options passed to the object. In particular, class \c BM understand only options related to storing results:
55 - logbounds - store also lower and upper bounds on estimates (obtained by calling BM::posterior().qbounds()),
56 - logevidence - store also evidence of each step of the Bayes rule.
57These values are stored in given logger (\ref ug_loggers). By default, only mean values of the estimate are stored.
58
59Storing of the evidence is useful, e.g. in model selection task when two models are compared.
60
61The bounds are useful e.g. for visualization of the results. Run of the example should provide result like the following:
62\image latex arx_basic_example.png "Typical run of tutorial/userguide/arx_basic_example.m" width=\linewidth
63
64\section ug2_model_sel Model selection
65
66In Bayesian framework, model selection is done via comparison of evidence (marginal likelihood) of the recorded data. See [some theory].
67
68A trivial exammple how this can be done is presented in file bdmtoolbox/tutorial/userguide/arx_selection_example.m. The code extends the basic A1 object as follows:
69\code
70A2=A1;
71A2.constant = 0;
72
73A3=A2;
74A3.frg = 0.95;
75\endcode
76That is, two other ARX estimators are created,
77 - A2 which is the same as A1 except it does not model constant term in the linear regression. Note that if the constant was set to zero, then this is the correct model.
78 - A3 which is the same as A2, but assumes time-variant parameters with forgetting factor 0.95.
79 
80Since all estimator were configured to store values of marginal log-likelihood, we can easily compare them by computint total log-likelihood for each of them and converting them to probabilities. Typically, the results should look like:
81\code
82Model_probabilities =
83
84    0.0002    0.7318    0.2680
85\endcode
86Hence, the true model A2 was correctly identified as the most likely to produce this data.
87
88For this task, additional technical adjustments were needed:
89\code
90A1.name='A1';
91A2.name='A2';
92A2.rv_param = RV({'a2th', 'r'},[2,1],[0,0]);
93A3.name='A3';
94A3.rv_param = RV({'a3th', 'r'},[2,1],[0,0]);
95\endcode
96First, in order to distinguish the estimators from each other, the estimators were given names. Hence, the results will be logged with prefix given by the name, such as M.A1_evidence.
97
98Second, if the parameters of a ARX model are not specified, they are automatically named \c theta and \c r. However, in this case, \c A1 and \c A2 differ in size, hence their random variables differ and can not use the same name. Therefore, we have explicitly used another names (RVs) of the parameters.
99
100\section ug2_bm_composition Composition of estimators
101
102Similarly to pdfs which could be composed via \c mprod, the Bayesian models can be composed togetrer. However, justification of this step is less clear than in the case of epdfs.
103
104One possible theoretical base of composition is the Marginalized particle filter, which splits the prior and the posterior in two parts:
105\f[ f(x_t|d_1\ldots d_t)=f(x_{1,t}|x_{2,t},d_1\ldots d_t)f(x_{2,t}|d_1\ldots d_t) \f]
106each of these parts is estimated using different approach. The first part is assumed to be analytically tractable, while the second is approximated using empirical approximation.
107
108The whole algorithm runs by parallel evaluation of many \c BMs for estimation of \f$ x_{1,t}\f$, each of them conditioned on value of a sample of \f$ x_{2,t}\f$.
109
110For example, the forgetting factor, \f$ \phi \f$ of an ARX model can be considered to be unknown. Then, the whole parameter space is \f$ [\theta_t, r_t, \phi_t]\f$ decomposed as follows:
111\f[ f(\theta_t, r_t, \phi_t) = f(\theta_t, r_t| \phi_t) f(\phi_t) \f]
112Note that for known trajectory of \f$ \phi_t \f$ the standard ARX estimator can be used if we find a way how to feed the changing \f$ \phi_t \f$ into it.
113This is achieved by a trivial extension using inheritance method bdm::BM::condition().
114
115Extension of standard ARX estimator to conditional estimator is implemented as class bdm::ARXfrg. The only difference from standard ARX is that this object will obtain its forgetting factor externally as a conditioning variable.
116Informally, the name 'ARXfrg' means: "if anybody calls your condition(0.9), it tells you new value of forgetting factor".
117
118The MPF estimator for this case is specified as follows:
119\code
120%%%%%% ARX estimator conditioned on frg
121
122A1.class = 'ARXfrg';
123A1.rv = y;
124A1.rgr = RVtimes([y,u],[-3,-1]) ;
125A1.log_level ='logbounds,logevidence';
126A1.frg = 0.9;
127A1.name = 'A1';
128
129%%%%%% Random walk on frg - Dirichlet
130phi_pdf.class = 'mDirich';         % random walk on coefficient phi
131phi_pdf.rv    = RV('phi',2);       % 2D random walk - frg is the first element
132phi_pdf.k     = 0.01;              % width of the random walk
133phi_pdf.betac = [0.01 0.01];       % stabilizing elememnt of random walk
134
135%%%%%% Particle
136p.class = 'MarginalizedParticle';
137p.parameter_pdf = phi_pdf;         % Random walk is the parameter evolution model
138p.bm    = A1;
139
140% prior on ARX
141%%%%%% Combining estimators in Marginalized particle filter
142E.class = 'PF';
143E.particle = p;                    % ARX is the analytical part
144E.res_threshold = 1.0;             % resampling parameter
145E.n = 100;                         % number of particles
146E.prior.class = 'eDirich';         % prior on non-linear part
147E.prior.beta  = [2 1]; %
148E.log_level = 'logbounds';
149E.name = 'MPF';
150
151M=estimator(DS,{E});
152
153\endcode
154 
155Here, the configuration structure \c A1 is a description of an ARX model, as used in previous examples, the only difference is in its name 'ARXfrg'.
156
157The configuration structure \c phi_pdf defines random walk on the forgetting factor. It was chosen as Dirichlet, hence it will produce 2-dimensional vector of \f$[\phi, 1-\phi]\f$. The class \c ARXfrg was designed to read only the first element of its condition.
158The random walk of type mDirich is:
159\f[ f(\phi_t|\phi_{t-1}) = Di (\phi_{t-1}/k + \beta_c) \f]
160where \f$ k \f$ influences the spread of the walk and \f$ \beta_c \f$ has the role of stabilizing, to avoid traps of corner cases such as [0,1] and [1,0].
161Its influence on the results is quite important.
162
163This example is implemented as bdmtoolbox/tutorial/userguide/frg_example.m
164Its typical run should look like the following:
165\image html frg_example_small.png
166\image latex frg_example.png "Typical run of tutorial/userguide/frg_example.m" width=\linewidth
167
168Note: error bars in this case are not directly comparable with those of previous examples. The MPF class implements the qbounds function as minimum and maximum of bounds in the condidered set (even if its weight is extreemly small). Hence, the bounds of the MPF are probably larger than it should be. Nevertheless, they provide great help when designing and tuning algorithms.
169
170\section ug_est_ext Matlab extensions of the Bayesian estimators
171
172Similarly to the extension of pdf, the estimators (or filters) can be extended via prepared class \c mexBM in directory bdmtoolbox/mex/mex_classes.
173
174An example of such class is mexLaplaceBM in \<toolbox_dir\>\tutorial\userguide\laplace_example.m
175
176Note that matlab-extended classes of mexEpdf, specifically, mexDirac and mexLaplace are used as outputs of methods posterior and epredictor, respectively.
177
178In order to create a new extension of an estimator, copy file with class mexLaplaceBM.m and redefine the methods therein. If needed create new classes for pdfs by inheriting from mexEpdf, it the same way as in the mexLaplace.m example class.
179
180Foro list of all estimators, see \ref app_base.
181*/
Note: See TracBrowser for help on using the browser.