SHOGUN  4.2.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
GaussianShortRealKernel.h
Go to the documentation of this file.
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) 2008-2009 Soeren Sonnenburg
8  * Copyright (C) 2008-2009 Fraunhofer Institute FIRST and Max-Planck-Society
9  */
10 
11 #ifndef _GAUSSIANSHORTREALKERNEL_H___
12 #define _GAUSSIANSHORTREALKERNEL_H___
13 
14 #include <shogun/lib/config.h>
15 
16 #include <shogun/lib/common.h>
19 
20 namespace shogun
21 {
34 {
35  public:
38 
45 
54  float64_t width, int32_t size=10);
55 
56  virtual ~CGaussianShortRealKernel();
57 
64  virtual bool init(CFeatures* l, CFeatures* r);
65 
70  virtual EKernelType get_kernel_type() { return K_GAUSSIAN; }
71 
76  virtual const char* get_name() const { return "GaussianShortRealKernel"; }
79  virtual void register_params();
80 
81  protected:
90  virtual float64_t compute(int32_t idx_a, int32_t idx_b);
91 
92  protected:
95 };
96 }
97 #endif /* _GAUSSIANSHORTREALKERNEL_H__ */
The class DenseFeatures implements dense feature matrices.
Definition: LDA.h:40
EKernelType
Definition: Kernel.h:57
virtual const char * get_name() const
Template class DotKernel is the base class for kernels working on DotFeatures.
Definition: DotKernel.h:31
double float64_t
Definition: common.h:50
The well known Gaussian kernel (swiss army knife for SVMs) on dense short-real valued features...
virtual bool init(CFeatures *l, CFeatures *r)
virtual float64_t compute(int32_t idx_a, int32_t idx_b)
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

SHOGUN Machine Learning Toolbox - Documentation