SHOGUN  4.2.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
JensenShannonKernel.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) 2012 Viktor Gal
8  * Copyright (C) 2012 Viktor Gal
9  */
10 
11 #ifndef _JENSENSHANNONKERNEL_H___
12 #define _JENSENSHANNONKERNEL_H___
13 
14 #include <shogun/lib/config.h>
15 
16 #include <shogun/lib/common.h>
19 
20 namespace shogun
21 {
31 {
32  public:
35 
40  CJensenShannonKernel(int32_t size);
41 
50  int32_t size=10);
51 
52  virtual ~CJensenShannonKernel();
53 
60  virtual bool init(CFeatures* l, CFeatures* r);
61 
67 
72  virtual const char* get_name() const { return "JensenShannonKernel"; }
73 
74  protected:
75 
84  virtual float64_t compute(int32_t idx_a, int32_t idx_b);
85 
86 };
87 }
88 #endif /* _JENSENSHANNONKERNEL_H___ */
virtual const char * get_name() const
EKernelType
Definition: Kernel.h:57
The Jensen-Shannon kernel operating on real-valued vectors computes the Jensen-Shannon distance betwe...
virtual EKernelType get_kernel_type()
Template class DotKernel is the base class for kernels working on DotFeatures.
Definition: DotKernel.h:31
double float64_t
Definition: common.h:50
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