SHOGUN  4.1.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 
19 #include <shogun/lib/common.h>
21 
22 namespace shogun
23 {
43  BmrmStatistics svm_p3bm_solver(
44  CDualLibQPBMSOSVM *machine,
45  float64_t *W,
46  float64_t TolRel,
47  float64_t TolAbs,
48  float64_t _lambda,
49  uint32_t _BufSize,
50  bool cleanICP,
51  uint32_t cleanAfter,
52  float64_t K,
53  uint32_t Tmax,
54  uint32_t cp_models,
55  bool verbose
56  );
57 
58 }
59 
60 #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
BmrmStatistics svm_p3bm_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, uint32_t cp_models, bool verbose)
Definition: libp3bm.cpp:34

SHOGUN Machine Learning Toolbox - Documentation