metric.h 4.21 KB
Newer Older
1
2
3
4
/*!
 * Copyright (c) 2016 Microsoft Corporation. All rights reserved.
 * Licensed under the MIT License. See LICENSE file in the project root for license information.
 */
Guolin Ke's avatar
Guolin Ke committed
5
6
7
8
9
#ifndef LIGHTGBM_METRIC_H_
#define LIGHTGBM_METRIC_H_

#include <LightGBM/config.h>
#include <LightGBM/dataset.h>
10
#include <LightGBM/meta.h>
11
#include <LightGBM/objective_function.h>
12
13
#include <LightGBM/utils/log.h>
#include <LightGBM/utils/common.h>
Guolin Ke's avatar
Guolin Ke committed
14

15
16
17
#include <string>
#include <vector>

Guolin Ke's avatar
Guolin Ke committed
18
19
20
21
namespace LightGBM {

/*!
* \brief The interface of metric.
22
*        Metric is used to calculate metric result
Guolin Ke's avatar
Guolin Ke committed
23
24
*/
class Metric {
Nikita Titov's avatar
Nikita Titov committed
25
 public:
Guolin Ke's avatar
Guolin Ke committed
26
27
28
29
30
31
32
33
34
  /*! \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
35
  virtual void Init(const Metadata& metadata, data_size_t num_data) = 0;
Guolin Ke's avatar
Guolin Ke committed
36

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

39
  virtual double factor_to_bigger_better() const = 0;
Guolin Ke's avatar
Guolin Ke committed
40
  /*!
41
  * \brief Calculating and printing metric result
Guolin Ke's avatar
Guolin Ke committed
42
43
  * \param score Current prediction score
  */
Guolin Ke's avatar
Guolin Ke committed
44
  virtual std::vector<double> Eval(const double* score, const ObjectiveFunction* objective) const = 0;
Guolin Ke's avatar
Guolin Ke committed
45

Guolin Ke's avatar
Guolin Ke committed
46
47
48
49
50
51
  Metric() = default;
  /*! \brief Disable copy */
  Metric& operator=(const Metric&) = delete;
  /*! \brief Disable copy */
  Metric(const Metric&) = delete;

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

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

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

  /*!
  * \brief Calculate the DCG score at multi position
Qiwei Ye's avatar
Qiwei Ye committed
86
  * \param ks The positions to evaluate
Guolin Ke's avatar
Guolin Ke committed
87
88
89
90
91
92
  * \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,
93
    const label_t* label, const double* score,
94
    data_size_t num_data, std::vector<double>* out);
Guolin Ke's avatar
Guolin Ke committed
95
96
97
98
99
100
101
102

  /*!
  * \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
  */
103
  static double CalMaxDCGAtK(data_size_t k,
104
    const label_t* label, data_size_t num_data);
Guolin Ke's avatar
Guolin Ke committed
105

106
107
108
109
110
111
112
113

  /*!
  * \brief Check the metadata for NDCG and lambdarank
  * \param metadata Metadata
  * \param num_queries Number of queries
  */
  static void CheckMetadata(const Metadata& metadata, data_size_t num_queries);

114
115
116
117
118
  /*!
  * \brief Check the label range for NDCG and lambdarank
  * \param label Pointer of label
  * \param num_data Number of data
  */
119
  static void CheckLabel(const label_t* label, data_size_t num_data);
120

Guolin Ke's avatar
Guolin Ke committed
121
122
123
124
125
126
127
128
  /*!
  * \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,
129
    const label_t* label, data_size_t num_data, std::vector<double>* out);
Guolin Ke's avatar
Guolin Ke committed
130
131
132
133
134
135

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

Nikita Titov's avatar
Nikita Titov committed
138
 private:
Guolin Ke's avatar
Guolin Ke committed
139
  /*! \brief store gains for different label */
140
  static std::vector<double> label_gain_;
Guolin Ke's avatar
Guolin Ke committed
141
  /*! \brief store discount score for different position */
142
  static std::vector<double> discount_;
Guolin Ke's avatar
Guolin Ke committed
143
144
145
146
147
148
149
150
  /*! \brief max position for eval */
  static const data_size_t kMaxPosition;
};


}  // namespace LightGBM


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