metric.h 3.81 KB
Newer Older
Guolin Ke's avatar
Guolin Ke committed
1
2
3
#ifndef LIGHTGBM_METRIC_H_
#define LIGHTGBM_METRIC_H_

Guolin Ke's avatar
Guolin Ke committed
4
5
6
#include <LightGBM/utils/log.h>
#include <LightGBM/utils/common.h>

Guolin Ke's avatar
Guolin Ke committed
7
8
9
#include <LightGBM/meta.h>
#include <LightGBM/config.h>
#include <LightGBM/dataset.h>
10
#include <LightGBM/objective_function.h>
Guolin Ke's avatar
Guolin Ke committed
11
12
13
14
15
16
17

#include <vector>

namespace LightGBM {

/*!
* \brief The interface of metric.
18
*        Metric is used to calculate metric result
Guolin Ke's avatar
Guolin Ke committed
19
20
21
22
23
24
25
26
27
28
29
30
*/
class Metric {
public:
  /*! \brief virtual destructor */
  virtual ~Metric() {}

  /*!
  * \brief Initialize
  * \param test_name Specific name for this metric, will output on log
  * \param metadata Label data
  * \param num_data Number of data
  */
Guolin Ke's avatar
Guolin Ke committed
31
  virtual void Init(const Metadata& metadata, data_size_t num_data) = 0;
Guolin Ke's avatar
Guolin Ke committed
32

Guolin Ke's avatar
Guolin Ke committed
33
  virtual const std::vector<std::string>& GetName() const = 0;
34

35
  virtual double factor_to_bigger_better() const = 0;
Guolin Ke's avatar
Guolin Ke committed
36
  /*!
Qiwei Ye's avatar
Qiwei Ye committed
37
  * \brief Calcaluting and printing metric result
Guolin Ke's avatar
Guolin Ke committed
38
39
  * \param score Current prediction score
  */
Guolin Ke's avatar
Guolin Ke committed
40
  virtual std::vector<double> Eval(const double* score, const ObjectiveFunction* objective) const = 0;
Guolin Ke's avatar
Guolin Ke committed
41

Guolin Ke's avatar
Guolin Ke committed
42
43
44
45
46
47
  Metric() = default;
  /*! \brief Disable copy */
  Metric& operator=(const Metric&) = delete;
  /*! \brief Disable copy */
  Metric(const Metric&) = delete;

Guolin Ke's avatar
Guolin Ke committed
48
49
50
51
52
  /*!
  * \brief Create object of metrics
  * \param type Specific type of metric
  * \param config Config for metric
  */
Guolin Ke's avatar
Guolin Ke committed
53
  LIGHTGBM_EXPORT static Metric* CreateMetric(const std::string& type, const Config& config);
Guolin Ke's avatar
Guolin Ke committed
54
55
56
57
58
59
60
};

/*!
* \brief Static class, used to calculate DCG score
*/
class DCGCalculator {
public:
Guolin Ke's avatar
Guolin Ke committed
61
62
  static void DefaultEvalAt(std::vector<int>* eval_at);
  static void DefaultLabelGain(std::vector<double>* label_gain);
Guolin Ke's avatar
Guolin Ke committed
63
64
65
66
  /*!
  * \brief Initial logic
  * \param label_gain Gain for labels, default is 2^i - 1
  */
Guolin Ke's avatar
Guolin Ke committed
67
  static void Init(const std::vector<double>& label_gain);
Guolin Ke's avatar
Guolin Ke committed
68
69
70

  /*!
  * \brief Calculate the DCG score at position k
Qiwei Ye's avatar
Qiwei Ye committed
71
  * \param k The position to evaluate
Guolin Ke's avatar
Guolin Ke committed
72
73
74
75
76
  * \param label Pointer of label
  * \param score Pointer of score
  * \param num_data Number of data
  * \return The DCG score
  */
77
  static double CalDCGAtK(data_size_t k, const label_t* label,
78
    const double* score, data_size_t num_data);
Guolin Ke's avatar
Guolin Ke committed
79
80
81

  /*!
  * \brief Calculate the DCG score at multi position
Qiwei Ye's avatar
Qiwei Ye committed
82
  * \param ks The positions to evaluate
Guolin Ke's avatar
Guolin Ke committed
83
84
85
86
87
88
  * \param label Pointer of label
  * \param score Pointer of score
  * \param num_data Number of data
  * \param out Output result
  */
  static void CalDCG(const std::vector<data_size_t>& ks,
89
    const label_t* label, const double* score,
90
    data_size_t num_data, std::vector<double>* out);
Guolin Ke's avatar
Guolin Ke committed
91
92
93
94
95
96
97
98

  /*!
  * \brief Calculate the Max DCG score at position k
  * \param k The position want to eval at
  * \param label Pointer of label
  * \param num_data Number of data
  * \return The max DCG score
  */
99
  static double CalMaxDCGAtK(data_size_t k,
100
    const label_t* label, data_size_t num_data);
Guolin Ke's avatar
Guolin Ke committed
101

102
103
104
105
106
  /*!
  * \brief Check the label range for NDCG and lambdarank
  * \param label Pointer of label
  * \param num_data Number of data
  */
107
  static void CheckLabel(const label_t* label, data_size_t num_data);
108

Guolin Ke's avatar
Guolin Ke committed
109
110
111
112
113
114
115
116
  /*!
  * \brief Calculate the Max DCG score at multi position
  * \param ks The positions want to eval at
  * \param label Pointer of label
  * \param num_data Number of data
  * \param out Output result
  */
  static void CalMaxDCG(const std::vector<data_size_t>& ks,
117
    const label_t* label, data_size_t num_data, std::vector<double>* out);
Guolin Ke's avatar
Guolin Ke committed
118
119
120
121
122
123

  /*!
  * \brief Get discount score of position k
  * \param k The position
  * \return The discount of this position
  */
124
  inline static double GetDiscount(data_size_t k) { return discount_[k]; }
Guolin Ke's avatar
Guolin Ke committed
125
126
127

private:
  /*! \brief store gains for different label */
128
  static std::vector<double> label_gain_;
Guolin Ke's avatar
Guolin Ke committed
129
  /*! \brief store discount score for different position */
130
  static std::vector<double> discount_;
Guolin Ke's avatar
Guolin Ke committed
131
132
133
134
135
136
137
138
  /*! \brief max position for eval */
  static const data_size_t kMaxPosition;
};


}  // namespace LightGBM


Guolin Ke's avatar
Guolin Ke committed
139
#endif   // LightGBM_METRIC_H_