SHOGUN  4.1.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 
19 #include <shogun/lib/common.h>
21 
22 namespace shogun
23 {
41  BmrmStatistics svm_ppbm_solver(
42  CDualLibQPBMSOSVM *machine,
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  bool verbose
53  );
54 
55 }
56 
57 #endif /* libppbm_h */
BmrmStatistics svm_ppbm_solver(CDualLibQPBMSOSVM *machine, float64_t *W, float64_t TolRel, float64_t TolAbs, float64_t _lambda, uint32_t _BufSize, bool cleanICP, uint32_t cleanAfter, float64_t K, uint32_t Tmax, bool verbose)
Definition: libppbm.cpp:34
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