SHOGUN  4.1.0
 全部  命名空间 文件 函数 变量 类型定义 枚举 枚举值 友元 宏定义  
WaveKernel.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 Sergey Lisitsyn
8  * Copyright (C) 2007-2011 Fraunhofer Institute FIRST and Max-Planck-Society
9  */
10 
13 
14 using namespace shogun;
15 
16 CWaveKernel::CWaveKernel(): CKernel(0), m_distance(NULL), m_theta(1.0)
17 {
18  init();
19 }
20 
21 CWaveKernel::CWaveKernel(int32_t cache, float64_t theta, CDistance* dist)
22 : CKernel(cache), m_distance(dist), m_theta(theta)
23 {
24  init();
27 }
28 
30 : CKernel(10), m_distance(dist), m_theta(theta)
31 {
32  init();
35  init(l, r);
36 }
37 
39 {
40  cleanup();
42 }
43 
44 bool CWaveKernel::init(CFeatures* l, CFeatures* r)
45 {
47  CKernel::init(l,r);
48  m_distance->init(l,r);
49  return init_normalizer();
50 }
51 
52 void CWaveKernel::init()
53 {
54  SG_ADD(&m_theta, "theta", "Theta kernel parameter.", MS_AVAILABLE);
55  SG_ADD((CSGObject**) &m_distance, "distance", "Distance to be used.",
56  MS_AVAILABLE);
57 }
58 
59 float64_t CWaveKernel::compute(int32_t idx_a, int32_t idx_b)
60 {
61  float64_t dist = m_distance->distance(idx_a, idx_b);
62 
63  if (dist==0.0)
64  return 1.0;
65 
66  return (m_theta/dist)*sin(dist/m_theta);
67 }
virtual void cleanup()
Definition: Kernel.cpp:173
Class Distance, a base class for all the distances used in the Shogun toolbox.
Definition: Distance.h:81
#define SG_REF(x)
Definition: SGObject.h:51
CDistance * m_distance
distance to be used
Definition: WaveKernel.h:101
float64_t m_theta
theta parameter of kernel
Definition: WaveKernel.h:104
#define ASSERT(x)
Definition: SGIO.h:201
Class SGObject is the base class of all shogun objects.
Definition: SGObject.h:112
double float64_t
Definition: common.h:50
virtual bool init_normalizer()
Definition: Kernel.cpp:168
virtual float64_t distance(int32_t idx_a, int32_t idx_b)
Definition: Distance.cpp:189
#define SG_UNREF(x)
Definition: SGObject.h:52
all of classes and functions are contained in the shogun namespace
Definition: class_list.h:18
The class Features is the base class of all feature objects.
Definition: Features.h:68
The Kernel base class.
Definition: Kernel.h:158
virtual ~CWaveKernel()
Definition: WaveKernel.cpp:38
#define SG_ADD(...)
Definition: SGObject.h:81
virtual bool init(CFeatures *lhs, CFeatures *rhs)
Definition: Distance.cpp:78
virtual bool init(CFeatures *l, CFeatures *r)
Definition: WaveKernel.cpp:44
virtual float64_t compute(int32_t idx_a, int32_t idx_b)
Definition: WaveKernel.cpp:59

SHOGUN 机器学习工具包 - 项目文档