SHOGUN
3.2.1
首页
相关页面
模块
类
文件
文件列表
文件成员
全部
类
命名空间
文件
函数
变量
类型定义
枚举
枚举值
友元
宏定义
组
页
src
shogun
kernel
AUCKernel.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
* Written (W) 1999-2008 Gunnar Raetsch
8
* Written (W) 2009 Soeren Sonnnenburg
9
* Copyright (C) 1999-2009 Fraunhofer Institute FIRST and Max-Planck-Society
10
*/
11
12
#ifndef _AUCKERNEL_H___
13
#define _AUCKERNEL_H___
14
15
#include <
shogun/lib/common.h
>
16
#include <
shogun/kernel/DotKernel.h
>
17
#include <
shogun/features/DenseFeatures.h
>
18
#include <
shogun/labels/Labels.h
>
19
20
namespace
shogun
21
{
22
class
CLabels;
23
template
<
class
T>
class
CDenseFeatures;
24
33
class
CAUCKernel
:
public
CDotKernel
34
{
35
void
init();
36
37
public
:
39
CAUCKernel
();
40
46
CAUCKernel
(int32_t size,
CKernel
*
subkernel
);
47
49
virtual
~CAUCKernel
();
50
57
CLabels
*
setup_auc_maximization
(
CLabels
* labels);
58
65
virtual
bool
init(
CFeatures
* l,
CFeatures
* r);
66
71
virtual
EKernelType
get_kernel_type
() {
return
K_AUC
; }
72
77
virtual
const
char
*
get_name
()
const
{
return
"AUCKernel"
; }
78
83
virtual
EFeatureClass
get_feature_class
() {
return
C_DENSE
; }
84
89
virtual
EFeatureType
get_feature_type
() {
return
F_WORD
; }
90
91
protected
:
100
virtual
float64_t
compute
(int32_t idx_a, int32_t idx_b);
101
102
protected
:
104
CKernel
*
subkernel
;
105
};
106
}
107
#endif
/* _AUCKERNEL_H__ */
SHOGUN
机器学习工具包 - 项目文档