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) 2011 Sergey Lisitsyn 00008 * Copyright (C) 2011 Berlin Institute of Technology and Max-Planck-Society 00009 */ 00010 00011 #ifndef BINARYCLASSEVALUATION_H_ 00012 #define BINARYCLASSEVALUATION_H_ 00013 00014 #include <shogun/evaluation/Evaluation.h> 00015 #include <shogun/labels/BinaryLabels.h> 00016 00017 namespace shogun 00018 { 00019 00020 class CLabels; 00021 00027 class CBinaryClassEvaluation: public CEvaluation 00028 { 00029 00030 public: 00031 00033 CBinaryClassEvaluation() : CEvaluation() {}; 00034 00036 virtual ~CBinaryClassEvaluation() {}; 00037 00043 virtual float64_t evaluate(CLabels* predicted, CLabels* ground_truth) = 0; 00044 }; 00045 00046 } 00047 00048 00049 #endif /* BINARYCLASSEVALUATION_H_ */