SHOGUN
v3.2.0
首页
相关页面
模块
类
文件
文件列表
文件成员
全部
类
命名空间
文件
函数
变量
类型定义
枚举
枚举值
友元
宏定义
组
页
src
shogun
structure
libppbm.h
浏览该文件的文档.
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/common.h
>
18
#include <
shogun/structure/libbmrm.h
>
19
20
namespace
shogun
21
{
39
BmrmStatistics
svm_ppbm_solver
(
40
CDualLibQPBMSOSVM *machine,
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::svm_ppbm_solver
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
float64_t
double float64_t
Definition:
common.h:48
libbmrm.h
common.h
SHOGUN
Machine Learning Toolbox - Documentation