metric.h 3.88 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 multi position
Qiwei Ye's avatar
Qiwei Ye committed
75
  * \param ks The positions to evaluate
Guolin Ke's avatar
Guolin Ke committed
76
77
78
79
80
81
  * \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,
82
    const label_t* label, const double* score,
83
    data_size_t num_data, std::vector<double>* out);
Guolin Ke's avatar
Guolin Ke committed
84
85
86
87
88
89
90
91

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

95
96

  /*!
Andrew Ziem's avatar
Andrew Ziem committed
97
  * \brief Check the metadata for NDCG and LambdaRank
98
99
100
101
102
  * \param metadata Metadata
  * \param num_queries Number of queries
  */
  static void CheckMetadata(const Metadata& metadata, data_size_t num_queries);

103
  /*!
Andrew Ziem's avatar
Andrew Ziem committed
104
  * \brief Check the label range for NDCG and LambdaRank
105
106
107
  * \param label Pointer of label
  * \param num_data Number of data
  */
108
  static void CheckLabel(const label_t* label, data_size_t num_data);
109

Guolin Ke's avatar
Guolin Ke committed
110
111
112
113
114
115
116
117
  /*!
  * \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,
118
    const label_t* label, data_size_t num_data, std::vector<double>* out);
Guolin Ke's avatar
Guolin Ke committed
119
120
121
122
123
124

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

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


}  // namespace LightGBM


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