1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> |
---|
2 | <html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> |
---|
3 | <title>mixpp: work/git/mixpp/bdm/estim/mixef.h Source File</title> |
---|
4 | <link href="doxygen.css" rel="stylesheet" type="text/css"> |
---|
5 | <link href="tabs.css" rel="stylesheet" type="text/css"> |
---|
6 | </head><body> |
---|
7 | <!-- Generated by Doxygen 1.5.6 --> |
---|
8 | <div class="navigation" id="top"> |
---|
9 | <div class="tabs"> |
---|
10 | <ul> |
---|
11 | <li><a href="index.html"><span>Main Page</span></a></li> |
---|
12 | <li><a href="pages.html"><span>Related Pages</span></a></li> |
---|
13 | <li><a href="annotated.html"><span>Classes</span></a></li> |
---|
14 | <li class="current"><a href="files.html"><span>Files</span></a></li> |
---|
15 | </ul> |
---|
16 | </div> |
---|
17 | <h1>work/git/mixpp/bdm/estim/mixef.h</h1><a href="mixef_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 |
---|
18 | <a name="l00013"></a>00013 <span class="preprocessor">#ifndef MEF_H</span> |
---|
19 | <a name="l00014"></a>00014 <span class="preprocessor"></span><span class="preprocessor">#define MEF_H</span> |
---|
20 | <a name="l00015"></a>00015 <span class="preprocessor"></span> |
---|
21 | <a name="l00016"></a>00016 <span class="preprocessor">#include <itpp/itbase.h></span> |
---|
22 | <a name="l00017"></a>00017 <span class="preprocessor">#include "../stat/libFN.h"</span> |
---|
23 | <a name="l00018"></a>00018 <span class="preprocessor">#include "../stat/libEF.h"</span> |
---|
24 | <a name="l00019"></a>00019 <span class="preprocessor">#include "../stat/emix.h"</span> |
---|
25 | <a name="l00020"></a>00020 |
---|
26 | <a name="l00021"></a>00021 <span class="keyword">using namespace </span>itpp; |
---|
27 | <a name="l00022"></a>00022 |
---|
28 | <a name="l00039"></a><a class="code" href="classMixEF.html">00039</a> <span class="keyword">class </span><a class="code" href="classMixEF.html" title="Mixture of Exponential Family Densities.">MixEF</a>: <span class="keyword">public</span> <a class="code" href="classBM.html" title="Bayesian Model of the world, i.e. all uncertainty is modeled by probabilities.">BM</a> { |
---|
29 | <a name="l00040"></a>00040 <span class="keyword">protected</span>: |
---|
30 | <a name="l00042"></a><a class="code" href="classMixEF.html#e9cc9bb3e6da801455cec99a59aea149">00042</a> <span class="keywordtype">int</span> <a class="code" href="classMixEF.html#e9cc9bb3e6da801455cec99a59aea149" title="Number of components.">n</a>; |
---|
31 | <a name="l00044"></a><a class="code" href="classMixEF.html#4c4a140ca4e6e71b00237b7bc754302e">00044</a> Array<BMEF*> <a class="code" href="classMixEF.html#4c4a140ca4e6e71b00237b7bc754302e" title="Models for Components of .">Coms</a>; |
---|
32 | <a name="l00046"></a><a class="code" href="classMixEF.html#d906782a0a9558f19150dc69411f717f">00046</a> <a class="code" href="classmultiBM.html" title="Estimator for Multinomial density.">multiBM</a> <a class="code" href="classMixEF.html#d906782a0a9558f19150dc69411f717f" title="Statistics for weights.">weights</a>; |
---|
33 | <a name="l00048"></a><a class="code" href="classMixEF.html#33968f1325137cc6f4431f0cf05096dc">00048</a> <a class="code" href="classeprod.html" title="Product of independent epdfs. For dependent pdfs, use mprod.">eprod</a>* <a class="code" href="classMixEF.html#33968f1325137cc6f4431f0cf05096dc" title="Posterior on component parameters.">est</a>; |
---|
34 | <a name="l00050"></a>00050 |
---|
35 | <a name="l00052"></a><a class="code" href="classMixEF.html#5ae381b3a7dfbe2c1e5bb579a5d9b9d1">00052</a> <span class="keywordtype">void</span> <a class="code" href="classMixEF.html#5ae381b3a7dfbe2c1e5bb579a5d9b9d1" title="Auxiliary function for use in constructors.">build_est</a>() { |
---|
36 | <a name="l00053"></a>00053 Array<const epdf*> epdfs ( <a class="code" href="classMixEF.html#e9cc9bb3e6da801455cec99a59aea149" title="Number of components.">n</a>+1 ); |
---|
37 | <a name="l00054"></a>00054 <span class="keywordflow">for</span> ( <span class="keywordtype">int</span> i=0;i<<a class="code" href="classMixEF.html#4c4a140ca4e6e71b00237b7bc754302e" title="Models for Components of .">Coms</a>.length();i++ ) { |
---|
38 | <a name="l00055"></a>00055 <span class="comment">// it_assert_debug(!x,"MixEF::MixEF : Incompatible components");</span> |
---|
39 | <a name="l00056"></a>00056 epdfs ( i ) =& ( <a class="code" href="classMixEF.html#4c4a140ca4e6e71b00237b7bc754302e" title="Models for Components of .">Coms</a> ( i )->_epdf() ); |
---|
40 | <a name="l00057"></a>00057 } |
---|
41 | <a name="l00058"></a>00058 <span class="comment">// last in the product is the weight</span> |
---|
42 | <a name="l00059"></a>00059 epdfs ( <a class="code" href="classMixEF.html#e9cc9bb3e6da801455cec99a59aea149" title="Number of components.">n</a> ) =& ( <a class="code" href="classMixEF.html#d906782a0a9558f19150dc69411f717f" title="Statistics for weights.">weights</a>.<a class="code" href="classmultiBM.html#66cdfd83a70bc281840ab0646b941684" title="Returns a pointer to the epdf representing posterior density on parameters. Use with...">_epdf</a>() ); |
---|
43 | <a name="l00060"></a>00060 <a class="code" href="classMixEF.html#33968f1325137cc6f4431f0cf05096dc" title="Posterior on component parameters.">est</a> = <span class="keyword">new</span> <a class="code" href="classeprod.html" title="Product of independent epdfs. For dependent pdfs, use mprod.">eprod</a> ( epdfs ); |
---|
44 | <a name="l00061"></a>00061 } |
---|
45 | <a name="l00062"></a>00062 |
---|
46 | <a name="l00063"></a>00063 <span class="keyword">public</span>: |
---|
47 | <a name="l00065"></a><a class="code" href="classMixEF.html#509ac467674c39af46aba42297528aad">00065</a> <a class="code" href="classMixEF.html" title="Mixture of Exponential Family Densities.">MixEF</a> ( <span class="keyword">const</span> Array<BMEF*> &Coms0, <span class="keyword">const</span> vec &alpha0 ) : |
---|
48 | <a name="l00066"></a>00066 <a class="code" href="classBM.html" title="Bayesian Model of the world, i.e. all uncertainty is modeled by probabilities.">BM</a> ( <a class="code" href="classRV.html" title="Class representing variables, most often random variables.">RV</a>() ), <a class="code" href="classMixEF.html#e9cc9bb3e6da801455cec99a59aea149" title="Number of components.">n</a> ( Coms0.length() ), <a class="code" href="classMixEF.html#4c4a140ca4e6e71b00237b7bc754302e" title="Models for Components of .">Coms</a> ( <a class="code" href="classMixEF.html#e9cc9bb3e6da801455cec99a59aea149" title="Number of components.">n</a> ), |
---|
49 | <a name="l00067"></a>00067 <a class="code" href="classMixEF.html#d906782a0a9558f19150dc69411f717f" title="Statistics for weights.">weights</a> ( <a class="code" href="classRV.html" title="Class representing variables, most often random variables.">RV</a> ( <span class="stringliteral">"{w }"</span>, vec_1 ( <a class="code" href="classMixEF.html#e9cc9bb3e6da801455cec99a59aea149" title="Number of components.">n</a> ) ),alpha0 ) { |
---|
50 | <a name="l00068"></a>00068 <span class="comment">// it_assert_debug ( n>0,"MixEF::MixEF : Empty Component list" );</span> |
---|
51 | <a name="l00069"></a>00069 |
---|
52 | <a name="l00070"></a>00070 <span class="keywordflow">for</span> ( <span class="keywordtype">int</span> i=0;i<<a class="code" href="classMixEF.html#e9cc9bb3e6da801455cec99a59aea149" title="Number of components.">n</a>;i++ ) {<a class="code" href="classMixEF.html#4c4a140ca4e6e71b00237b7bc754302e" title="Models for Components of .">Coms</a> ( i ) = ( <a class="code" href="classBMEF.html" title="Estimator for Exponential family.">BMEF</a>* ) Coms0 ( i )->_copy_();} |
---|
53 | <a name="l00071"></a>00071 <a class="code" href="classMixEF.html#5ae381b3a7dfbe2c1e5bb579a5d9b9d1" title="Auxiliary function for use in constructors.">build_est</a>(); |
---|
54 | <a name="l00072"></a>00072 }; |
---|
55 | <a name="l00073"></a>00073 <a class="code" href="classMixEF.html" title="Mixture of Exponential Family Densities.">MixEF</a> () : |
---|
56 | <a name="l00074"></a>00074 <a class="code" href="classBM.html" title="Bayesian Model of the world, i.e. all uncertainty is modeled by probabilities.">BM</a> ( <a class="code" href="classRV.html" title="Class representing variables, most often random variables.">RV</a>() ), <a class="code" href="classMixEF.html#e9cc9bb3e6da801455cec99a59aea149" title="Number of components.">n</a> ( 0 ), <a class="code" href="classMixEF.html#4c4a140ca4e6e71b00237b7bc754302e" title="Models for Components of .">Coms</a> ( 0 ), |
---|
57 | <a name="l00075"></a>00075 <a class="code" href="classMixEF.html#d906782a0a9558f19150dc69411f717f" title="Statistics for weights.">weights</a> ( <a class="code" href="classRV.html" title="Class representing variables, most often random variables.">RV</a> ( <span class="stringliteral">"{w }"</span>, vec_1 ( 0 ) ),vec ( 0 ) ) {<a class="code" href="classMixEF.html#5ae381b3a7dfbe2c1e5bb579a5d9b9d1" title="Auxiliary function for use in constructors.">build_est</a>();} |
---|
58 | <a name="l00080"></a>00080 <span class="keywordtype">void</span> <a class="code" href="classMixEF.html#73a782d2f464c830bbdbb03d34c6d63e">init</a> ( <a class="code" href="classBMEF.html" title="Estimator for Exponential family.">BMEF</a>* Com0, <span class="keyword">const</span> mat &Data, <span class="keywordtype">int</span> c=5 ); |
---|
59 | <a name="l00081"></a>00081 <span class="comment">//Destructor</span> |
---|
60 | <a name="l00082"></a>00082 ~<a class="code" href="classMixEF.html" title="Mixture of Exponential Family Densities.">MixEF</a>() { |
---|
61 | <a name="l00083"></a>00083 <span class="keyword">delete</span> <a class="code" href="classMixEF.html#33968f1325137cc6f4431f0cf05096dc" title="Posterior on component parameters.">est</a>; |
---|
62 | <a name="l00084"></a>00084 <span class="keywordflow">for</span> ( <span class="keywordtype">int</span> i=0;i<<a class="code" href="classMixEF.html#e9cc9bb3e6da801455cec99a59aea149" title="Number of components.">n</a>;i++ ) {<span class="keyword">delete</span> <a class="code" href="classMixEF.html#4c4a140ca4e6e71b00237b7bc754302e" title="Models for Components of .">Coms</a> ( i );} |
---|
63 | <a name="l00085"></a>00085 } |
---|
64 | <a name="l00087"></a>00087 <span class="keywordtype">void</span> <a class="code" href="classMixEF.html#d520fb534aa43f3084ff1568ffe7573d" title="Recursive EM-like algorithm (QB-variant), see Karny et. al, 2006.">bayes</a> ( <span class="keyword">const</span> vec &dt ); |
---|
65 | <a name="l00089"></a>00089 <span class="keywordtype">void</span> <a class="code" href="classMixEF.html#d520fb534aa43f3084ff1568ffe7573d" title="Recursive EM-like algorithm (QB-variant), see Karny et. al, 2006.">bayes</a> ( <span class="keyword">const</span> mat &dt ); |
---|
66 | <a name="l00090"></a>00090 <span class="keywordtype">void</span> <a class="code" href="classMixEF.html#e6810daa121ccaff1ac18f26fbad4563" title="Batch Bayes rule (columns of Dt are observations).">bayesB</a> ( <span class="keyword">const</span> mat &dt ); |
---|
67 | <a name="l00091"></a>00091 <span class="keywordtype">double</span> <a class="code" href="classMixEF.html#424ca64f36d4e41de7a7e7ae921d35ea">logpred</a> ( <span class="keyword">const</span> vec &dt ) <span class="keyword">const</span>; |
---|
68 | <a name="l00092"></a><a class="code" href="classMixEF.html#efb3e20c2151d91c4fc080b7722a2069">00092</a> <span class="keyword">const</span> <a class="code" href="classepdf.html" title="Probability density function with numerical statistics, e.g. posterior density.">epdf</a>& <a class="code" href="classMixEF.html#efb3e20c2151d91c4fc080b7722a2069" title="Returns a pointer to the epdf representing posterior density on parameters. Use with...">_epdf</a>()<span class="keyword"> const </span>{<span class="keywordflow">return</span> *<a class="code" href="classMixEF.html#33968f1325137cc6f4431f0cf05096dc" title="Posterior on component parameters.">est</a>;} |
---|
69 | <a name="l00093"></a>00093 <a class="code" href="classemix.html" title="Mixture of epdfs.">emix</a>* <a class="code" href="classMixEF.html#a93379cf31bb25961ea7f8d3f095513d" title="Constructs a predictive density (marginal density on data).">predictor</a>(<span class="keyword">const</span> <a class="code" href="classRV.html" title="Class representing variables, most often random variables.">RV</a> &<a class="code" href="classBM.html#af00f0612fabe66241dd507188cdbf88" title="Random variable of the posterior.">rv</a>); |
---|
70 | <a name="l00095"></a>00095 <span class="keywordtype">void</span> <a class="code" href="classMixEF.html#fdbd5f58778c1ecb68b71945cdff0483" title="Flatten the density as if it was not estimated from the data.">flatten</a>(<span class="keywordtype">double</span> sumw=1.0); |
---|
71 | <a name="l00096"></a>00096 }; |
---|
72 | <a name="l00097"></a>00097 |
---|
73 | <a name="l00098"></a>00098 |
---|
74 | <a name="l00099"></a>00099 <span class="preprocessor">#endif // MEF_H</span> |
---|
75 | <a name="l00100"></a>00100 <span class="preprocessor"></span> |
---|
76 | <a name="l00101"></a>00101 |
---|
77 | </pre></div></div> |
---|
78 | <hr size="1"><address style="text-align: right;"><small>Generated on Wed Oct 15 15:57:09 2008 for mixpp by |
---|
79 | <a href="http://www.doxygen.org/index.html"> |
---|
80 | <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.6 </small></address> |
---|
81 | </body> |
---|
82 | </html> |
---|