SHOGUN  4.1.0
 全部  命名空间 文件 函数 变量 类型定义 枚举 枚举值 友元 宏定义  
DiagKernel.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-2009 Soeren Sonnenburg
8  * Copyright (C) 1999-2009 Fraunhofer Institute FIRST and Max-Planck-Society
9  */
10 
11 #ifndef _DIAGKERNEL_H___
12 #define _DIAGKERNEL_H___
13 
14 #include <shogun/lib/config.h>
15 
16 #include <shogun/lib/common.h>
17 #include <shogun/kernel/Kernel.h>
18 
19 namespace shogun
20 {
28 class CDiagKernel: public CKernel
29 {
30  public:
32  CDiagKernel();
33 
39  CDiagKernel(int32_t size, float64_t diag=1.0);
40 
48 
49  virtual ~CDiagKernel();
50 
57  virtual bool init(CFeatures* l, CFeatures* r);
58 
64  {
65  return F_ANY;
66  }
67 
73  {
74  return C_ANY;
75  }
76 
81  virtual EKernelType get_kernel_type() { return K_DIAG; }
82 
87  virtual const char* get_name() const { return "DiagKernel"; }
88 
89  protected:
98  virtual float64_t compute(int32_t idx_a, int32_t idx_b)
99  {
100  if (idx_a==idx_b)
101  return diag;
102  else
103  return 0;
104  }
105  private:
106  void init();
107 
108  protected:
111 };
112 }
113 #endif /* _DIAGKERNEL_H__ */
virtual EKernelType get_kernel_type()
Definition: DiagKernel.h:81
EKernelType
Definition: Kernel.h:57
The Diagonal Kernel returns a constant for the diagonal and zero otherwise.
Definition: DiagKernel.h:28
virtual bool init(CFeatures *l, CFeatures *r)
Definition: DiagKernel.cpp:45
virtual const char * get_name() const
Definition: DiagKernel.h:87
EFeatureClass
shogun feature class
Definition: FeatureTypes.h:38
virtual EFeatureClass get_feature_class()
Definition: DiagKernel.h:72
double float64_t
Definition: common.h:50
virtual EFeatureType get_feature_type()
Definition: DiagKernel.h:63
EFeatureType
shogun feature type
Definition: FeatureTypes.h:19
virtual ~CDiagKernel()
Definition: DiagKernel.cpp:41
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
virtual float64_t compute(int32_t idx_a, int32_t idx_b)
Definition: DiagKernel.h:98
The Kernel base class.
Definition: Kernel.h:158

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