SHOGUN  v2.0.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
libp3bm.h
Go to the documentation of this file.
1 /*
2  * This program is free software; you can redistribute it and/or modify
3  * it under the terms of the GNU General Public License as published by
4  * the Free Software Foundation; either version 3 of the License, or
5  * (at your option) any later version.
6  *
7  * libp3bm.h: Implementation of the Proximal Point P-BMRM solver for SO training
8  *
9  * Copyright (C) 2012 Michal Uricar, uricamic@cmp.felk.cvut.cz
10  *
11  * Implementation of the Proximal Point P-BMRM (3pbm)
12  *--------------------------------------------------------------------- */
13 
14 #include <shogun/lib/common.h>
16 
17 #ifndef libp3bm_h
18 #define libp3bm_h
19 
20 namespace shogun
21 {
41  bmrm_return_value_T svm_p3bm_solver(
42  CStructuredModel *model,
43  float64_t *W,
44  float64_t TolRel,
45  float64_t TolAbs,
46  float64_t _lambda,
47  uint32_t _BufSize,
48  bool cleanICP,
49  uint32_t cleanAfter,
50  float64_t K,
51  uint32_t Tmax,
52  uint32_t cp_models,
53  bool verbose
54  );
55 
56 }
57 
58 #endif /* libp3bm_h */

SHOGUN Machine Learning Toolbox - Documentation