5 #ifndef THUNDERSVM_METRIC_H 6 #define THUNDERSVM_METRIC_H 8 #include <thundersvm/thundersvm.h> 15 virtual string name() = 0;
17 virtual float_type score(
const vector<float_type> &predict_y,
const vector<float_type> &ground_truth_y) = 0;
24 string name()
override;
32 float_type score(
const vector<float_type> &predict_y,
const vector<float_type> &ground_truth_y)
override;
39 string name()
override;
48 float_type score(
const vector<float_type> &predict_y,
const vector<float_type> &ground_truth_y)
override;
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