SHOGUN
v3.2.0
|
00001 /* 00002 * This program is free software; you can redistribute it and/or modify 00003 * it under the terms of the GNU General Public License as published by 00004 * the Free Software Foundation; either version 3 of the License, or 00005 * (at your option) any later version. 00006 * 00007 * Written (W) 2012-2013 Heiko Strathmann 00008 */ 00009 00010 #ifndef __MMDKERNELSELECTIONMAX_H_ 00011 #define __MMDKERNELSELECTIONMAX_H_ 00012 00013 #include <shogun/statistics/MMDKernelSelection.h> 00014 00015 namespace shogun 00016 { 00017 00032 class CMMDKernelSelectionMax: public CMMDKernelSelection 00033 { 00034 public: 00035 00037 CMMDKernelSelectionMax(); 00038 00044 CMMDKernelSelectionMax(CKernelTwoSampleTestStatistic* mmd); 00045 00047 virtual ~CMMDKernelSelectionMax(); 00048 00050 virtual SGVector<float64_t> compute_measures(); 00051 00053 const char* get_name() const { return "MMDKernelSelectionMax"; } 00054 }; 00055 00056 } 00057 00058 #endif /* __MMDKERNELSELECTIONMAX_H_ */