root/library/bdm/estim/arx.h @ 990

Revision 990, 7.0 kB (checked in by smidl, 14 years ago)

ARX validate

  • Property svn:eol-style set to native
Line 
1/*!
2  \file
3  \brief Bayesian Filtering for generalized autoregressive (ARX) model
4  \author Vaclav Smidl.
5
6  -----------------------------------
7  BDM++ - C++ library for Bayesian Decision Making under Uncertainty
8
9  Using IT++ for numerical operations
10  -----------------------------------
11*/
12
13#ifndef AR_H
14#define AR_H
15
16#include "../math/functions.h"
17#include "../stat/exp_family.h"
18#include "../base/user_info.h"
19//#include "../estim/kalman.h"
20#include "arx_straux.h"
21
22namespace bdm {
23
24/*!
25* \brief Linear Autoregressive model with Gaussian noise
26
27Regression of the following kind:
28\f[
29y_t = \theta_1 \psi_1 + \theta_2 + \psi_2 +\ldots + \theta_n \psi_n + r e_t
30\f]
31where unknown parameters \c rv are \f$[\theta r]\f$, regression vector \f$\psi=\psi(y_{1:t},u_{1:t})\f$ is a known function of past outputs and exogeneous variables \f$u_t\f$. Distrubances \f$e_t\f$ are supposed to be normally distributed:
32\f[
33e_t \sim \mathcal{N}(0,1).
34\f]
35
36See \ref tut_arx for mathematical treatment.
37
38The easiest way how to use the class is:
39\include arx_simple.cpp
40
41        \todo sort out constant terms - bayes should accept vec without additional 1s
42*/
43class ARX: public BMEF {
44protected:
45        //! switch if constant is modelled or not
46        bool have_constant;
47        //! vector of dyadic update
48        vec dyad;
49        //! RV of regressor
50        RV rgr;
51        //! length of the regressor (without optional constant)
52        int rgrlen;
53        //! posterior density
54        egiw est;
55        //! Alternative estimate of parameters, used in stabilized forgetting, see [Kulhavy]
56        egiw alter_est;
57public:
58        //! \name Constructors
59        //!@{
60        ARX ( const double frg0 = 1.0 ) : BMEF ( frg0 ),  have_constant ( true ), dyad(), rgrlen(),est(), alter_est() {};
61        ARX ( const ARX &A0 ) : BMEF ( A0 ),  have_constant ( A0.have_constant ), dyad ( A0.dyad ),rgrlen(A0.rgrlen), est ( A0.est ), alter_est ( A0.alter_est ) { };
62
63        ARX* _copy() const;
64
65        void set_frg ( double frg0 ) {
66                frg = frg0;
67        }
68        void set_constant ( bool const0 ) {
69                have_constant = const0;
70        }
71        void set_statistics ( int dimy0, const ldmat V0, double nu0 = -1.0 ) {
72                est.set_parameters ( dimy0, V0, nu0 );
73                est.validate();
74                last_lognc = est.lognc();
75                dimy = dimy0;
76        }
77        //!@}
78
79        //! Set sufficient statistics
80        void set_statistics ( const BMEF* BM0 );
81
82        //!\name Mathematical operations
83        //!@{
84
85        //! Weighted Bayes \f$ dt = [y_t psi_t] \f$.
86        void bayes_weighted ( const vec &yt, const vec &cond = empty_vec, const double w = 1.0 );
87        void bayes ( const vec &yt, const vec &cond = empty_vec ) {
88                bayes_weighted ( yt, cond, 1.0 );
89        };
90        double logpred ( const vec &yt ) const;
91        void flatten ( const BMEF* B );
92        //! Conditioned version of the predictor
93        enorm<ldmat>* epredictor ( const vec &rgr ) const;
94        //! Predictor for empty regressor
95        enorm<ldmat>* epredictor() const;
96        //! conditional version of the predictor
97        template<class sq_T>
98        shared_ptr<mlnorm<sq_T> > ml_predictor() const;
99        //! fast version of predicto
100        template<class sq_T>
101        void ml_predictor_update ( mlnorm<sq_T> &pred ) const;
102        mlstudent* predictor_student() const;
103        //! Brute force structure estimation.\return indices of accepted regressors.
104        ivec structure_est ( egiw Eg0 );
105        //! Smarter structure estimation by Ludvik Tesar.\return indices of accepted regressors.
106        ivec structure_est_LT ( egiw Eg0 );
107        //!@}
108
109        //!\name Access attributes
110        //!@{
111        //! return correctly typed posterior (covariant return)
112        const egiw& posterior() const {
113                return est;
114        }
115        //!@}
116
117        /*! UI for ARX estimator
118
119        \code
120        class = 'ARX';
121        yrv   = RV({names_of_dt} )                 // description of output variables
122        rgr   = RV({names_of_regressors}, [-1,-2]} // description of regressor variables
123        constant = 1;                              // 0/1 switch if the constant term is modelled or not
124
125        --- optional ---
126        prior = {class='egiw',...};                // Prior density, when given default is used instead
127        alternative = {class='egiw',...};          // Alternative density in stabilized estimation, when not given prior is used
128
129        frg = 1.0;                                 // forgetting, default frg=1.0
130
131        rv  = RV({names_of_parameters}}            // description of parametetr names
132                                                                                           // default: [""]
133        \endcode
134        */
135        void from_setting ( const Setting &set );
136
137        void validate() {
138                BMEF::validate();       
139                est.validate();
140                //if dimc not set set it from V
141                if(dimy>0) {//statistics is assigned
142                        if (posterior()._V().rows()>dimy) {//statistics is assigned
143                                rgrlen=posterior()._V().rows() - dimy - int ( have_constant == true );
144                        }
145                } else{
146                        bdm_error("No posterior or yrv assigned matrix assigned");
147                }
148                dimc =rgrlen;
149               
150                if(est._dimx()==0) { // no prior
151                        est.set_parameters(dimy, zeros(dimy+rgrlen+int(have_constant==true)));
152                        set_prior_default(est);
153                }
154                if (alter_est.dimension()==0) alter_est=est;
155
156                dyad = ones ( est._V().rows() );
157        }
158        //! function sets prior and alternative density
159        void set_prior ( const epdf *prior );
160        //! build default prior and alternative when all values are set
161        void set_prior_default ( egiw &prior ) {
162                //assume
163                vec dV0 ( prior._V().rows() );
164                dV0.set_subvector ( 0, prior._dimx() - 1, 1.0 );
165                if (dV0.length()>prior._dimx())
166                        dV0.set_subvector ( prior._dimx(), dV0.length() - 1, 1e-5 );
167               
168                prior.set_parameters ( prior._dimx(), ldmat ( dV0 ) );
169                prior.validate();
170        }
171
172        void to_setting ( Setting &set ) const
173        {                       
174                BMEF::to_setting( set ); // takes care of rv, yrv, rvc
175                UI::save(rgr, set, "rgr");
176                int constant = have_constant ? 1 : 0;
177                UI::save(constant, set, "constant");
178                UI::save(&alter_est, set, "alternative");
179                UI::save(&posterior(), set, "posterior");
180               
181        } 
182};
183UIREGISTER ( ARX );
184SHAREDPTR ( ARX );
185
186/*! ARX model conditined by knowledge of the forgetting factor
187\f[ f(\theta| d_1 \ldots d_t , \phi_t) \f]
188
189The symbol \f$ \phi \f$ is assumed to be the last of the conditioning variables.
190*/
191class ARXfrg : public ARX {
192public:
193        ARXfrg() : ARX() {};
194        //! copy constructor
195        ARXfrg ( const ARXfrg &A0 ) : ARX ( A0 ) {};
196        virtual ARXfrg* _copy() const {
197                ARXfrg *A = new ARXfrg ( *this );
198                return A;
199        }
200
201        void bayes ( const vec &val, const vec &cond ) {
202                bdm_assert_debug(cond.size()>rgrlen, "ARXfrg: Insufficient conditioning, frg not given.");
203                frg = cond ( rgrlen); // the first part after rgrlen
204                ARX::bayes ( val, cond.left(rgrlen) );
205        }
206        void validate() {
207                ARX::validate();
208                rvc.add ( RV ( "{phi }", vec_1 ( 1 ) ) );
209                dimc += 1;
210        }
211};
212UIREGISTER ( ARXfrg );
213
214
215////////////////////
216template<class sq_T>
217shared_ptr< mlnorm<sq_T> > ARX::ml_predictor ( ) const {
218        shared_ptr< mlnorm<sq_T> > tmp = new mlnorm<sq_T> ( );
219        tmp->set_rv ( yrv );
220        tmp->set_rvc ( _rvc() );
221
222        ml_predictor_update ( *tmp );
223        tmp->validate();
224        return tmp;
225}
226
227template<class sq_T>
228void ARX::ml_predictor_update ( mlnorm<sq_T> &pred ) const {
229        mat mu ( dimy, posterior()._V().rows() - dimy );
230        mat R ( dimy, dimy );
231
232        est.mean_mat ( mu, R ); //mu =
233        mu = mu.T();
234        //correction for student-t  -- TODO check if correct!!
235
236        if ( have_constant ) { // constant term
237                //Assume the constant term is the last one:
238                pred.set_parameters ( mu.get_cols ( 0, mu.cols() - 2 ), mu.get_col ( mu.cols() - 1 ), sq_T ( R ) );
239        } else {
240                pred.set_parameters ( mu, zeros ( dimy ), sq_T ( R ) );
241        }
242}
243
244};
245#endif // AR_H
246
Note: See TracBrowser for help on using the browser.