SHOGUN  4.1.0
 全部  命名空间 文件 函数 变量 类型定义 枚举 枚举值 友元 宏定义  
EvaluationResult.h
浏览该文件的文档.
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  * Copyright (C) 2012 Jacob Walker
8  */
9 
10 #ifndef CEVALUATIONRESULT_H_
11 #define CEVALUATIONRESULT_H_
12 
13 #include <shogun/lib/config.h>
14 
15 #include <shogun/base/SGObject.h>
16 
17 namespace shogun
18 {
19 
24 {
27 };
28 
33 {
34 public:
37 
38  virtual ~CEvaluationResult() { }
39 
46  virtual EEvaluationResultType get_result_type() const=0;
47 
49  virtual void print_result()=0;
50 };
51 }
52 #endif /* CEVALUATIONRESULT_H_ */
Class SGObject is the base class of all shogun objects.
Definition: SGObject.h:112
Abstract class that contains the result generated by the MachineEvaluation class. ...
all of classes and functions are contained in the shogun namespace
Definition: class_list.h:18
virtual void print_result()=0
virtual EEvaluationResultType get_result_type() const =0

SHOGUN 机器学习工具包 - 项目文档