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) 2013 Saurabh Mahindre 00008 */ 00009 00010 #ifndef __LOOCROSSVALIDATIONSPLITTING_H_ 00011 #define __LOOCROSSVALIDATIONSPLITTING_H_ 00012 00013 #include <shogun/evaluation/CrossValidationSplitting.h> 00014 00015 namespace shogun 00016 { 00020 class CLOOCrossValidationSplitting: public CCrossValidationSplitting 00021 { 00022 public: 00024 CLOOCrossValidationSplitting(); 00025 00030 CLOOCrossValidationSplitting(CLabels* labels); 00031 00033 virtual const char* get_name() const 00034 { 00035 return "LOOCrossValidationSplitting"; 00036 } 00037 00038 }; 00039 } 00040 00041 #endif /* __LOOCROSSVALIDATIONSPLITTING_H_ */ 00042 00043