/usr/include/shogun/evaluation/CrossValidationMulticlassStorage.h is in libshogun-dev 3.2.0-7.5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 | /*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* Written (W) 2012 Heiko Strathmann, Sergey Lisitsyn
*
*/
#ifndef CROSSVALIDATIONMULTICLASSSTORAGE_H_
#define CROSSVALIDATIONMULTICLASSSTORAGE_H_
#include <shogun/evaluation/CrossValidationOutput.h>
#include <shogun/evaluation/BinaryClassEvaluation.h>
#include <shogun/labels/MulticlassLabels.h>
#include <shogun/lib/SGMatrix.h>
#include <shogun/lib/DynamicObjectArray.h>
namespace shogun
{
class CMachine;
class CLabels;
class CEvaluation;
/** @brief Class for storing multiclass evaluation information in every fold of cross-validation.
*
* Be careful - can be very expensive memory-wise.
*/
class CCrossValidationMulticlassStorage: public CCrossValidationOutput
{
public:
/** constructor
* @param compute_ROC whether to compute ROCs
* @param compute_PRC whether to compute PRCs
* @param compute_conf_matrices whether to compute confusion matrices
*/
CCrossValidationMulticlassStorage(bool compute_ROC=true, bool compute_PRC=false, bool compute_conf_matrices=false);
/** destructor */
virtual ~CCrossValidationMulticlassStorage();
/** returns ROC of 1-v-R in given fold and run
*
* @param run run
* @param fold fold
* @param c class
* @return ROC of 'run' run, 'fold' fold and 'c' class
*/
SGMatrix<float64_t> get_fold_ROC(int32_t run, int32_t fold, int32_t c)
{
ASSERT(0<=run)
ASSERT(run<m_num_runs)
ASSERT(0<=fold)
ASSERT(fold<m_num_folds)
ASSERT(0<=c)
ASSERT(c<m_num_classes)
REQUIRE(m_compute_ROC, "ROC computation was not enabled\n")
return m_fold_ROC_graphs[run*m_num_folds*m_num_classes+fold*m_num_classes+c];
}
/** returns PRC of 1-v-R in given fold and run
*
* @param run run
* @param fold fold
* @param c class
* @return ROC of 'run' run, 'fold' fold and 'c' class
*/
SGMatrix<float64_t> get_fold_PRC(int32_t run, int32_t fold, int32_t c)
{
ASSERT(0<=run)
ASSERT(run<m_num_runs)
ASSERT(0<=fold)
ASSERT(fold<m_num_folds)
ASSERT(0<=c)
ASSERT(c<m_num_classes)
REQUIRE(m_compute_PRC, "PRC computation was not enabled\n")
return m_fold_PRC_graphs[run*m_num_folds*m_num_classes+fold*m_num_classes+c];
}
/** appends a binary evaluation instance
*
* @param evaluation binary evaluation to add
*/
void append_binary_evaluation(CBinaryClassEvaluation* evaluation)
{
m_binary_evaluations->push_back(evaluation);
}
/** returns binary evalution appended before
*
* @param idx
*/
CBinaryClassEvaluation* get_binary_evaluation(int32_t idx)
{
return (CBinaryClassEvaluation*)m_binary_evaluations->get_element_safe(idx);
}
/** returns evaluation result of 1-v-R in given fold and run
*
* @param run run
* @param fold fold
* @param c class
* @param e evaluation number
*/
float64_t get_fold_evaluation_result(int32_t run, int32_t fold, int32_t c, int32_t e)
{
ASSERT(0<=run)
ASSERT(run<m_num_runs)
ASSERT(0<=fold)
ASSERT(fold<m_num_folds)
ASSERT(0<=c)
ASSERT(c<m_num_classes)
ASSERT(0<=e)
int32_t n_evals = m_binary_evaluations->get_num_elements();
ASSERT(e<n_evals)
return m_evaluations_results[run*m_num_folds*m_num_classes*n_evals+fold*m_num_classes*n_evals+c*n_evals+e];
}
/** returns accuracy of fold and run
* @param run run
* @param fold fold
*/
float64_t get_fold_accuracy(int32_t run, int32_t fold)
{
ASSERT(0<=run)
ASSERT(run<m_num_runs)
ASSERT(0<=fold)
ASSERT(fold<m_num_folds)
return m_accuracies[run*m_num_folds+fold];
}
/** returns confusion matrix of fold and run
* @param run run
* @param fold fold
*/
SGMatrix<int32_t> get_fold_conf_matrix(int32_t run, int32_t fold)
{
ASSERT(0<=run)
ASSERT(run<m_num_runs)
ASSERT(0<=fold)
ASSERT(fold<m_num_folds)
REQUIRE(m_compute_conf_matrices, "Confusion matrices computation was not enabled\n")
return m_conf_matrices[run*m_num_folds+fold];
}
/** post init */
virtual void post_init();
/** post update results */
virtual void post_update_results();
/** expose labels
* @param labels labels to expose
*/
virtual void init_expose_labels(CLabels* labels);
/** update test result
*
* @param results result labels for test/validation run
* @param prefix prefix for output
*/
virtual void update_test_result(CLabels* results,
const char* prefix="");
/** update test true result
*
* @param results ground truth labels for test/validation run
* @param prefix prefix for output
*/
virtual void update_test_true_result(CLabels* results,
const char* prefix="");
/** @return name of SG_SERIALIZABLE */
virtual const char* get_name() const { return "CrossValidationMulticlassStorage"; }
protected:
/** is initialized */
bool m_initialized;
/** custom binary evaluators */
CDynamicObjectArray* m_binary_evaluations;
/** fold evaluation results */
SGVector<float64_t> m_evaluations_results;
/** accuracies */
SGVector<float64_t> m_accuracies;
/** whether compute ROCs */
bool m_compute_ROC;
/** fold ROC graphs */
SGMatrix<float64_t>* m_fold_ROC_graphs;
/** whether compute PRCs */
bool m_compute_PRC;
/** fold PRC graphs */
SGMatrix<float64_t>* m_fold_PRC_graphs;
/** whether compute confusion matrices */
bool m_compute_conf_matrices;
/** confusion matrices */
SGMatrix<int32_t>* m_conf_matrices;
/** predicted results */
CMulticlassLabels* m_pred_labels;
/** true labels */
CMulticlassLabels* m_true_labels;
/** number of classes */
int32_t m_num_classes;
};
}
#endif /* CROSSVALIDATIONMULTICLASSSTORAGE_H_ */
|