SHOGUN  v2.0.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
MultitaskROCEvaluation.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  * Copyright (C) 2012 Sergey Lisitsyn
8  */
9 
10 #ifndef MULTITASKROCEVALUATION_H_
11 #define MULTITASKROCEVALUATION_H_
12 
15 
16 namespace shogun
17 {
18 
25 {
26 public:
30  m_num_tasks(0)
31  {
32  }
33 
37  m_num_tasks(0)
38  {
39  set_task_relation(task_relation);
40  }
41 
44  {
45  for (int32_t i=0; i<m_num_tasks; i++)
48  }
49 
51  void set_task_relation(CTaskRelation* task_relation)
52  {
53  SG_REF(task_relation);
55  m_task_relation = task_relation;
56  }
57 
60  {
62  return m_task_relation;
63  }
64 
70  virtual void set_indices(SGVector<index_t> indices);
71 
73  virtual const char* get_name() const { return "MultitaskROCEvaluation"; };
74 
80  virtual float64_t evaluate(CLabels* predicted, CLabels* ground_truth);
81 
84  {
85  return ED_MAXIMIZE;
86  }
87 
88 protected:
89 
92 
95 
97  int32_t m_num_tasks;
98 };
99 
100 }
101 
102 #endif /* MULTITASKROCEVALUATION_H_ */

SHOGUN Machine Learning Toolbox - Documentation