SHOGUN  v2.0.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
libppbm.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  * libppbm.h: Implementation of the Proximal Point BM solver for SO training
8  *
9  * Copyright (C) 2012 Michal Uricar, uricamic@cmp.felk.cvut.cz
10  *
11  * Implementation of the Proximal Point Bundle Method solver
12  *--------------------------------------------------------------------- */
13 
14 #include <shogun/lib/common.h>
16 
17 #ifndef libppbm_h
18 #define libppbm_h
19 
20 namespace shogun
21 {
39  bmrm_return_value_T svm_ppbm_solver(
40  CStructuredModel *model,
41  float64_t *W,
42  float64_t TolRel,
43  float64_t TolAbs,
44  float64_t _lambda,
45  uint32_t _BufSize,
46  bool cleanICP,
47  uint32_t cleanAfter,
48  float64_t K,
49  uint32_t Tmax,
50  bool verbose
51  );
52 
53 }
54 
55 #endif /* libppbm_h */

SHOGUN Machine Learning Toolbox - Documentation