SHOGUN
3.2.1
首页
相关页面
模块
类
文件
文件列表
文件成员
全部
类
命名空间
文件
函数
变量
类型定义
枚举
枚举值
友元
宏定义
组
页
src
shogun
kernel
RationalQuadraticKernel.cpp
浏览该文件的文档.
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) 2011 Rafał Surowiecki
8
* Copyright (C) 2011 Berlin Institute of Technology and Max-Planck-Society
9
*/
10
11
#include <
shogun/kernel/RationalQuadraticKernel.h
>
12
#include <
shogun/mathematics/Math.h
>
13
14
using namespace
shogun;
15
16
CRationalQuadraticKernel::CRationalQuadraticKernel
():
CKernel
(0), m_distance(NULL), m_coef(0.001)
17
{
18
init
();
19
}
20
21
CRationalQuadraticKernel::CRationalQuadraticKernel
(int32_t cache,
float64_t
coef,
CDistance
*
distance
)
22
:
CKernel
(cache), m_distance(distance), m_coef(coef)
23
{
24
ASSERT
(
m_distance
)
25
SG_REF
(
m_distance
);
26
init
();
27
}
28
29
CRationalQuadraticKernel::CRationalQuadraticKernel
(
CFeatures
*l,
CFeatures
*r,
float64_t
coef,
CDistance
* dist)
30
:
CKernel
(10), m_distance(dist), m_coef(coef)
31
{
32
ASSERT
(
m_distance
)
33
SG_REF
(
m_distance
);
34
init
();
35
init
(l, r);
36
}
37
38
CRationalQuadraticKernel::~CRationalQuadraticKernel
()
39
{
40
cleanup
();
41
SG_UNREF
(
m_distance
);
42
}
43
44
bool
CRationalQuadraticKernel::init(
CFeatures
* l,
CFeatures
* r)
45
{
46
ASSERT
(
m_distance
)
47
CKernel::init(l,r);
48
m_distance
->
init
(l,r);
49
return
init_normalizer
();
50
}
51
52
float64_t
CRationalQuadraticKernel::compute
(int32_t idx_a, int32_t idx_b)
53
{
54
float64_t
dist =
m_distance
->
distance
(idx_a, idx_b);
55
float64_t
pDist = dist * dist;
56
return
1-pDist/(pDist+
m_coef
);
57
}
58
59
void
CRationalQuadraticKernel::init()
60
{
61
SG_ADD
(&
m_coef
,
"coef"
,
"Kernel coefficient."
,
MS_AVAILABLE
);
62
SG_ADD
((
CSGObject
**) &
m_distance
,
"distance"
,
"Distance to be used."
,
63
MS_AVAILABLE
);
64
}
65
SHOGUN
机器学习工具包 - 项目文档