ThunderSVM
ThunderSVM: An Open-Source SVM Library on GPUs and CPUs
metric.h
1 //
2 // Created by jiashuai on 17-11-1.
3 //
4 
5 #ifndef THUNDERSVM_METRIC_H
6 #define THUNDERSVM_METRIC_H
7 
8 #include <thundersvm/thundersvm.h>
9 
13 class Metric {
14 public:
15  virtual string name() = 0;
16 
17  virtual float_type score(const vector<float_type> &predict_y, const vector<float_type> &ground_truth_y) = 0;
18 };
19 
23 class Accuracy : public Metric {
24  string name() override;
25 
32  float_type score(const vector<float_type> &predict_y, const vector<float_type> &ground_truth_y) override;
33 };
34 
38 class MSE : public Metric {
39  string name() override;
40 
48  float_type score(const vector<float_type> &predict_y, const vector<float_type> &ground_truth_y) override;
49 };
50 
51 #endif //THUNDERSVM_METRIC_H
metric for evaluation model
Definition: metric.h:13
Mean Squared Error.
Definition: metric.h:38
Accuracy.
Definition: metric.h:23