SHOGUN  4.2.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules 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 #ifndef libp3bm_h
15 #define libp3bm_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 {
44  BmrmStatistics svm_p3bm_solver(
45  CDualLibQPBMSOSVM *machine,
46  float64_t *W,
47  float64_t TolRel,
48  float64_t TolAbs,
49  float64_t _lambda,
50  uint32_t _BufSize,
51  bool cleanICP,
52  uint32_t cleanAfter,
53  float64_t K,
54  uint32_t Tmax,
55  uint32_t cp_models,
56  bool verbose
57  );
58 
59 }
60 #endif //USE_GPL_SHOGUN
61 #endif /* libp3bm_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