SHOGUN  v2.0.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
AUCKernel.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) 1999-2008 Gunnar Raetsch
8  * Written (W) 2009 Soeren Sonnnenburg
9  * Copyright (C) 1999-2009 Fraunhofer Institute FIRST and Max-Planck-Society
10  */
11 
12 #ifndef _AUCKERNEL_H___
13 #define _AUCKERNEL_H___
14 
15 #include <shogun/lib/common.h>
18 #include <shogun/labels/Labels.h>
19 
20 namespace shogun
21 {
22  class CLabels;
23  template <class T> class CDenseFeatures;
24 
33 class CAUCKernel: public CDotKernel
34 {
35  void init();
36 
37  public:
39  CAUCKernel();
40 
46  CAUCKernel(int32_t size, CKernel* subkernel);
47 
49  virtual ~CAUCKernel();
50 
58 
65  virtual bool init(CFeatures* l, CFeatures* r);
66 
71  virtual EKernelType get_kernel_type() { return K_AUC; }
72 
77  virtual const char* get_name() const { return "AUCKernel" ; }
78 
83  inline virtual EFeatureClass get_feature_class() { return C_DENSE; }
84 
89  virtual EFeatureType get_feature_type() { return F_WORD; }
90 
91  protected:
100  virtual float64_t compute(int32_t idx_a, int32_t idx_b);
101 
102  protected:
105 };
106 }
107 #endif /* _AUCKERNEL_H__ */

SHOGUN Machine Learning Toolbox - Documentation