root/library/bdm/estim/mixtures.h @ 477

Revision 477, 4.2 kB (checked in by mido, 15 years ago)

panove, vite, jak jsem peclivej na upravu kodu.. snad se vam bude libit:) konfigurace je v souboru /system/astylerc

  • Property svn:eol-style set to native
Line 
1/*!
2  \file
3  \brief Bayesian Filtering for mixtures of exponential family (EF) members
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 MIXTURES_H
14#define MIXTURES_H
15
16
17#include "../math/functions.h"
18#include "../stat/exp_family.h"
19#include "../stat/emix.h"
20
21namespace bdm {
22
23enum MixEF_METHOD { EM = 0, QB = 1};
24
25/*!
26* \brief Mixture of Exponential Family Densities
27
28An approximate estimation method for models with latent discrete variable, such as
29mixture models of the following kind:
30\f[
31f(y_t|\psi_t, \Theta) = \sum_{i=1}^{n} w_i f(y_t|\psi_t, \theta_i)
32\f]
33where  \f$\psi\f$ is a known function of past outputs, \f$w=[w_1,\ldots,w_n]\f$ are component weights, and component parameters \f$\theta_i\f$ are assumed to be mutually independent. \f$\Theta\f$ is an aggregation af all component parameters and weights, i.e. \f$\Theta = [\theta_1,\ldots,\theta_n,w]\f$.
34
35The characteristic feature of this model is that if the exact values of the latent variable were known, estimation of the parameters can be handled by a single model. For example, for the case of mixture models, posterior density for each component parameters would be a BayesianModel from Exponential Family.
36
37This class uses EM-style type algorithms for estimation of its parameters. Under this simplification, the posterior density is a product of exponential family members, hence under EM-style approximate estimation this class itself belongs to the exponential family.
38
39TODO: Extend BM to use rvc.
40*/
41class MixEF: public BMEF {
42protected:
43        //!Number of components
44        int n;
45        //! Models for Components of \f$\theta_i\f$
46        Array<BMEF*> Coms;
47        //! Statistics for weights
48        multiBM weights;
49        //!Posterior on component parameters
50        eprod* est;
51        ////!Indeces of component rvc in common rvc
52
53        //! Flag for a method that is used in the inference
54        MixEF_METHOD method;
55
56        //! Auxiliary function for use in constructors
57        void build_est() {
58                est = new eprod;
59                if ( n > 0 ) {
60                        Array<const epdf*> epdfs ( n + 1 );
61                        for ( int i = 0; i < Coms.length(); i++ ) {
62//                      it_assert_debug(!x,"MixEF::MixEF : Incompatible components");
63                                epdfs ( i ) = & ( Coms ( i )->posterior() );
64                        }
65                        // last in the product is the weight
66                        epdfs ( n ) = & ( weights.posterior() );
67                        est->set_parameters ( epdfs, false );
68                }
69        }
70
71public:
72        //! Full constructor
73        MixEF ( const Array<BMEF*> &Coms0, const vec &alpha0 ) :
74                        BMEF ( ), n ( Coms0.length() ), Coms ( n ),
75                        weights (), method ( QB ) {
76                //      it_assert_debug ( n>0,"MixEF::MixEF : Empty Component list" );
77
78                for ( int i = 0; i < n; i++ ) {
79                        Coms ( i ) = ( BMEF* ) Coms0 ( i )->_copy_();
80                }
81                build_est();
82        };
83        //! Constructor of empty mixture
84        MixEF () :
85                        BMEF ( ), n ( 0 ), Coms ( 0 ),
86                        weights (), method ( QB ) {
87                build_est();
88        }
89        //! Copy constructor
90        MixEF ( const MixEF &M2 ) : BMEF ( ), n ( M2.n ), Coms ( n ),
91                        weights ( M2.weights ), method ( M2.method ) {
92                //      it_assert_debug ( n>0,"MixEF::MixEF : Empty Component list" );
93
94                for ( int i = 0; i < n; i++ ) {
95                        Coms ( i ) = M2.Coms ( i )->_copy_();
96                }
97                build_est();
98        }
99        //! Initializing the mixture by a random pick of centroids from data
100        //! \param Com0 Initial component - necessary to determine its type.
101        //! \param Data Data on which the initialization will be done
102        //! \param c Initial number of components, default=5
103        void init ( BMEF* Com0, const mat &Data, int c = 5 );
104        //Destructor
105        ~MixEF() {
106                delete est;
107                for ( int i = 0; i < n; i++ ) {
108                        delete Coms ( i );
109                }
110        }
111        //! Recursive EM-like algorithm (QB-variant), see Karny et. al, 2006
112        void bayes ( const vec &dt );
113        //! EM algorithm
114        void bayes ( const mat &dt );
115        void bayesB ( const mat &dt, const vec &wData );
116        double logpred ( const vec &dt ) const;
117        const epdf& posterior() const {
118                return *est;
119        }
120        const eprod* _e() const {
121                return est;
122        }
123        emix* epredictor() const;
124        //! Flatten the density as if it was not estimated from the data
125        void flatten ( const BMEF* M2 );
126        //! Access function
127        BMEF* _Coms ( int i ) {
128                return Coms ( i );
129        }
130
131        //!Set which method is to be used
132        void set_method ( MixEF_METHOD M ) {
133                method = M;
134        }
135};
136
137}
138#endif // MIXTURES_H
139
Note: See TracBrowser for help on using the browser.