Class RMSE
Synopsis
#include <include/thundergbm/metric/pointwise_metric.h>
class RMSE : public Metric
Description
No description yet.
Mentioned in
- Getting Started / Quick Start
- How To / Quick Start
Inheritance
Ancestors: Metric
Methods
get_name | ||
get_score |
Source
Lines 10-15 in include/thundergbm/metric/pointwise_metric.h.
class RMSE : public Metric {
public:
float_type get_score(const SyncArray<float_type> &y_p) const override;
string get_name() const override { return "RMSE"; }
};