1 /* Copyright (C) 2006-2008 Joris Mooij [joris dot mooij at tuebingen dot mpg dot de]
2 Radboud University Nijmegen, The Netherlands /
3 Max Planck Institute for Biological Cybernetics, Germany
5 This file is part of libDAI.
7 libDAI is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 libDAI is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with libDAI; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
30 #include <boost/program_options.hpp>
32 #include <dai/alldai.h>
37 namespace po
= boost::program_options
;
56 TestDAI( const FactorGraph
&fg
, const string
&_name
, const PropertySet
&opts
) : obj(NULL
), name(_name
), err(), q(), logZ(0.0), maxdiff(0.0), time(0), iters(0U), has_logZ(false), has_maxdiff(false), has_iters(false) {
58 if( name
== "LDPC" ) {
59 double zero
[2] = {1.0, 0.0};
61 for( size_t i
= 0; i
< fg
.nrVars(); i
++ )
62 q
.push_back( Factor(Var(i
,2), zero
) );
70 obj
= newInfAlg( name
, fg
, opts
);
81 return obj
->identify();
86 vector
<Factor
> allBeliefs() {
87 vector
<Factor
> result
;
88 for( size_t i
= 0; i
< obj
->fg().nrVars(); i
++ )
89 result
.push_back( obj
->belief( obj
->fg().var(i
) ) );
103 } catch( Exception
&e
) {
104 if( e
.code() == Exception::NOT_IMPLEMENTED
)
111 maxdiff
= obj
->maxDiff();
113 } catch( Exception
&e
) {
114 if( e
.code() == Exception::NOT_IMPLEMENTED
)
121 iters
= obj
->Iterations();
123 } catch( Exception
&e
) {
124 if( e
.code() == Exception::NOT_IMPLEMENTED
)
134 void calcErrs( const TestDAI
&x
) {
136 err
.reserve( q
.size() );
137 for( size_t i
= 0; i
< q
.size(); i
++ )
138 err
.push_back( dist( q
[i
], x
.q
[i
], Prob::DISTTV
) );
141 void calcErrs( const vector
<Factor
> &x
) {
143 err
.reserve( q
.size() );
144 for( size_t i
= 0; i
< q
.size(); i
++ )
145 err
.push_back( dist( q
[i
], x
[i
], Prob::DISTTV
) );
149 return( *max_element( err
.begin(), err
.end() ) );
153 return( accumulate( err
.begin(), err
.end(), 0.0 ) / err
.size() );
158 pair
<string
, PropertySet
> parseMethod( const string
&_s
, const map
<string
,string
> & aliases
) {
159 // s = first part of _s, until '['
160 string::size_type pos
= _s
.find_first_of('[');
162 if( pos
== string::npos
)
165 s
= _s
.substr(0,pos
);
167 // if the first part is an alias, substitute
168 if( aliases
.find(s
) != aliases
.end() )
169 s
= aliases
.find(s
)->second
;
171 // attach second part, merging properties if necessary
172 if( pos
!= string::npos
) {
173 if( s
.at(s
.length()-1) == ']' ) {
174 s
= s
.erase(s
.length()-1,1) + ',' + _s
.substr(pos
+1);
176 s
= s
+ _s
.substr(pos
);
179 pair
<string
, PropertySet
> result
;
180 string
& name
= result
.first
;
181 PropertySet
& opts
= result
.second
;
183 pos
= s
.find_first_of('[');
184 if( pos
== string::npos
)
185 throw "Malformed method";
186 name
= s
.substr( 0, pos
);
188 for( ; strlen( DAINames
[n
] ) != 0; n
++ )
189 if( name
== DAINames
[n
] )
191 if( strlen( DAINames
[n
] ) == 0 && (name
!= "LDPC") )
192 DAI_THROW(UNKNOWN_DAI_ALGORITHM
);
195 ss
<< s
.substr(pos
,s
.length());
202 double clipdouble( double x
, double minabs
) {
203 if( fabs(x
) < minabs
)
210 int main( int argc
, char *argv
[] ) {
213 vector
<string
> methods
;
217 bool marginals
= false;
218 bool report_iters
= true;
219 bool report_time
= true;
221 po::options_description
opts_required("Required options");
222 opts_required
.add_options()
223 ("filename", po::value
< string
>(&filename
), "Filename of FactorGraph")
224 ("methods", po::value
< vector
<string
> >(&methods
)->multitoken(), "DAI methods to test")
227 po::options_description
opts_optional("Allowed options");
228 opts_optional
.add_options()
229 ("help", "produce help message")
230 ("aliases", po::value
< string
>(&aliases
), "Filename for aliases")
231 ("tol", po::value
< double >(&tol
), "Override tolerance")
232 ("maxiter", po::value
< size_t >(&maxiter
), "Override maximum number of iterations")
233 ("verbose", po::value
< size_t >(&verbose
), "Override verbosity")
234 ("marginals", po::value
< bool >(&marginals
), "Output single node marginals?")
235 ("report-time", po::value
< bool >(&report_time
), "Report calculation time")
236 ("report-iters", po::value
< bool >(&report_iters
), "Report iterations needed")
239 po::options_description cmdline_options
;
240 cmdline_options
.add(opts_required
).add(opts_optional
);
242 po::variables_map vm
;
243 po::store(po::parse_command_line(argc
, argv
, cmdline_options
), vm
);
246 if( vm
.count("help") || !(vm
.count("filename") && vm
.count("methods")) ) {
247 cout
<< "Reads factorgraph <filename.fg> and performs the approximate" << endl
;
248 cout
<< "inference algorithms <method*>, reporting calculation time, max and average" << endl
;
249 cout
<< "error and relative logZ error (comparing with the results of" << endl
;
250 cout
<< "<method0>, the base method, for which one can use JTREE_HUGIN)." << endl
<< endl
;
251 cout
<< opts_required
<< opts_optional
<< endl
;
256 map
<string
,string
> Aliases
;
257 if( !aliases
.empty() ) {
259 infile
.open (aliases
.c_str());
260 if (infile
.is_open()) {
263 getline(infile
,line
);
266 if( (!line
.empty()) && (line
[0] != '#') ) {
267 string::size_type pos
= line
.find(':',0);
268 if( pos
== string::npos
)
269 throw "Invalid alias";
271 string::size_type posl
= line
.substr(0, pos
).find_last_not_of(" \t");
272 string key
= line
.substr(0, posl
+ 1);
273 string::size_type posr
= line
.substr(pos
+ 1, line
.length()).find_first_not_of(" \t");
274 string val
= line
.substr(pos
+ 1 + posr
, line
.length());
281 throw "Error opening aliases file";
285 fg
.ReadFromFile( filename
.c_str() );
290 cout
.setf( ios_base::scientific
);
293 cout
<< "# " << filename
<< endl
;
295 cout
<< left
<< "# METHOD" << "\t";
297 cout
<< right
<< "SECONDS " << "\t";
299 cout
<< "ITERS" << "\t";
300 cout
<< "MAX ERROR" << "\t";
301 cout
<< "AVG ERROR" << "\t";
302 cout
<< "LOGZ ERROR" << "\t";
303 cout
<< "MAXDIFF" << "\t";
306 for( size_t m
= 0; m
< methods
.size(); m
++ ) {
307 pair
<string
, PropertySet
> meth
= parseMethod( methods
[m
], Aliases
);
309 if( vm
.count("tol") )
310 meth
.second
.Set("tol",tol
);
311 if( vm
.count("maxiter") )
312 meth
.second
.Set("maxiter",maxiter
);
313 if( vm
.count("verbose") )
314 meth
.second
.Set("verbose",verbose
);
315 TestDAI
piet(fg
, meth
.first
, meth
.second
);
324 cout
<< left
<< methods
[m
] << "\t";
326 cout
<< right
<< piet
.time
<< "\t";
328 if( piet
.has_iters
) {
329 cout
<< piet
.iters
<< "\t";
336 cout
.setf( ios_base::scientific
);
339 double me
= clipdouble( piet
.maxErr(), 1e-9 );
342 double ae
= clipdouble( piet
.avgErr(), 1e-9 );
345 if( piet
.has_logZ
) {
346 cout
.setf( ios::showpos
);
347 double le
= clipdouble( piet
.logZ
/ logZ0
- 1.0, 1e-9 );
349 cout
.unsetf( ios::showpos
);
353 if( piet
.has_maxdiff
) {
354 double md
= clipdouble( piet
.maxdiff
, 1e-9 );
366 for( size_t i
= 0; i
< piet
.q
.size(); i
++ )
367 cout
<< "# " << piet
.q
[i
] << endl
;