SHOGUN  4.2.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules 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 #ifndef libppbm_h
15 #define libppbm_h
16 
17 #include <shogun/lib/config.h>
18 #ifdef USE_GPL_SHOGUN
19 
20 #include <shogun/lib/common.h>
22 
23 namespace shogun
24 {
42  BmrmStatistics svm_ppbm_solver(
43  CDualLibQPBMSOSVM *machine,
44  float64_t *W,
45  float64_t TolRel,
46  float64_t TolAbs,
47  float64_t _lambda,
48  uint32_t _BufSize,
49  bool cleanICP,
50  uint32_t cleanAfter,
51  float64_t K,
52  uint32_t Tmax,
53  bool verbose
54  );
55 
56 }
57 #endif //USE_GPL_SHOGUN
58 #endif /* libppbm_h */
double float64_t
Definition: common.h:50
all of classes and functions are contained in the shogun namespace
Definition: class_list.h:18

SHOGUN Machine Learning Toolbox - Documentation