binary_metric.hpp 7.42 KB
Newer Older
Guolin Ke's avatar
Guolin Ke committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef LIGHTGBM_METRIC_BINARY_METRIC_HPP_
#define LIGHTGBM_METRIC_BINARY_METRIC_HPP_

#include <LightGBM/utils/log.h>

#include <LightGBM/metric.h>

#include <algorithm>
#include <vector>

namespace LightGBM {

/*!
* \brief Metric for binary classification task.
* Use static class "PointWiseLossCalculator" to calculate loss point-wise
*/
template<typename PointWiseLossCalculator>
class BinaryMetric: public Metric {
public:
  explicit BinaryMetric(const MetricConfig& config) {
wxchan's avatar
wxchan committed
21
    early_stopping_round_ = config.early_stopping_round;
Guolin Ke's avatar
Guolin Ke committed
22
    output_freq_ = config.output_freq;
wxchan's avatar
wxchan committed
23
    the_bigger_the_better = false;
Guolin Ke's avatar
Guolin Ke committed
24
25
    sigmoid_ = static_cast<score_t>(config.sigmoid);
    if (sigmoid_ <= 0.0f) {
Qiwei Ye's avatar
Qiwei Ye committed
26
      Log::Fatal("Sigmoid param %f should greater than zero", sigmoid_);
Guolin Ke's avatar
Guolin Ke committed
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
    }
  }

  virtual ~BinaryMetric() {

  }

  void Init(const char* test_name, const Metadata& metadata, data_size_t num_data) override {
    name = test_name;
    num_data_ = num_data;
    // get label
    label_ = metadata.label();

    // get weights
    weights_ = metadata.weights();

    if (weights_ == nullptr) {
      sum_weights_ = static_cast<double>(num_data_);
    } else {
      sum_weights_ = 0.0f;
      for (data_size_t i = 0; i < num_data; ++i) {
        sum_weights_ += weights_[i];
      }
    }
  }

wxchan's avatar
wxchan committed
53
  score_t PrintAndGetLoss(int iter, const score_t* score) const override {
Guolin Ke's avatar
Guolin Ke committed
54
    score_t sum_loss = 0.0f;
wxchan's avatar
wxchan committed
55
    if (early_stopping_round_ > 0 || (output_freq_ > 0 && iter % output_freq_ == 0)) {
Guolin Ke's avatar
Guolin Ke committed
56
57
58
59
      if (weights_ == nullptr) {
        #pragma omp parallel for schedule(static) reduction(+:sum_loss)
        for (data_size_t i = 0; i < num_data_; ++i) {
          // sigmoid transform
Guolin Ke's avatar
Guolin Ke committed
60
          score_t prob = 1.0f / (1.0f + std::exp(-2.0f * sigmoid_ * score[i]));
Guolin Ke's avatar
Guolin Ke committed
61
62
63
64
65
66
67
          // add loss
          sum_loss += PointWiseLossCalculator::LossOnPoint(label_[i], prob);
        }
      } else {
        #pragma omp parallel for schedule(static) reduction(+:sum_loss)
        for (data_size_t i = 0; i < num_data_; ++i) {
          // sigmoid transform
Guolin Ke's avatar
Guolin Ke committed
68
          score_t prob = 1.0f / (1.0f + std::exp(-2.0f * sigmoid_ * score[i]));
Guolin Ke's avatar
Guolin Ke committed
69
70
71
72
          // add loss
          sum_loss += PointWiseLossCalculator::LossOnPoint(label_[i], prob) * weights_[i];
        }
      }
wxchan's avatar
wxchan committed
73
      score_t loss = sum_loss / sum_weights_;
wxchan's avatar
wxchan committed
74
      if (output_freq_ > 0 && iter % output_freq_ == 0){
75
        Log::Info("Iteration:%d, %s's %s: %f", iter, name, PointWiseLossCalculator::Name(), loss);
wxchan's avatar
wxchan committed
76
      }
wxchan's avatar
wxchan committed
77
      return loss;
Guolin Ke's avatar
Guolin Ke committed
78
    }
wxchan's avatar
wxchan committed
79
    return 0.0f;
Guolin Ke's avatar
Guolin Ke committed
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
  }

private:
  /*! \brief Output frequently */
  int output_freq_;
  /*! \brief Number of data */
  data_size_t num_data_;
  /*! \brief Pointer of label */
  const float* label_;
  /*! \brief Pointer of weighs */
  const float* weights_;
  /*! \brief Sum weights */
  double sum_weights_;
  /*! \brief Name of test set */
  const char* name;
  /*! \brief Sigmoid parameter */
  score_t sigmoid_;
};

/*!
* \brief Log loss metric for binary classification task.
*/
class BinaryLoglossMetric: public BinaryMetric<BinaryLoglossMetric> {
public:
  explicit BinaryLoglossMetric(const MetricConfig& config) :BinaryMetric<BinaryLoglossMetric>(config) {}

  inline static score_t LossOnPoint(float label, score_t prob) {
    if (label == 0) {
      if (1.0f - prob > kEpsilon) {
        return -std::log(1.0f - prob);
      }
    } else {
      if (prob > kEpsilon) {
        return -std::log(prob);
      }
    }
    return -std::log(kEpsilon);
  }

  inline static const char* Name() {
    return "log loss";
  }
};
/*!
* \brief Error rate metric for binary classification task.
*/
class BinaryErrorMetric: public BinaryMetric<BinaryErrorMetric> {
public:
  explicit BinaryErrorMetric(const MetricConfig& config) :BinaryMetric<BinaryErrorMetric>(config) {}

  inline static score_t LossOnPoint(float label, score_t prob) {
    if (prob < 0.5f) {
      return label;
    } else {
      return 1.0f - label;
    }
  }

  inline static const char* Name() {
    return "error rate";
  }
};

/*!
* \brief Auc Metric for binary classification task.
*/
class AUCMetric: public Metric {
public:
  explicit AUCMetric(const MetricConfig& config) {
wxchan's avatar
wxchan committed
149
    early_stopping_round_ = config.early_stopping_round;
Guolin Ke's avatar
Guolin Ke committed
150
    output_freq_ = config.output_freq;
wxchan's avatar
wxchan committed
151
    the_bigger_the_better = true;
Guolin Ke's avatar
Guolin Ke committed
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
  }

  virtual ~AUCMetric() {
  }

  void Init(const char* test_name, const Metadata& metadata, data_size_t num_data) override {
    name = test_name;
    num_data_ = num_data;
    // get label
    label_ = metadata.label();
    // get weights
    weights_ = metadata.weights();

    if (weights_ == nullptr) {
      sum_weights_ = static_cast<double>(num_data_);
    } else {
      sum_weights_ = 0.0f;
      for (data_size_t i = 0; i < num_data; ++i) {
        sum_weights_ += weights_[i];
      }
    }
  }

wxchan's avatar
wxchan committed
175
  score_t PrintAndGetLoss(int iter, const score_t* score) const override {
wxchan's avatar
wxchan committed
176
    if (early_stopping_round_ > 0 || (output_freq_ > 0 && iter % output_freq_ == 0)) {
Guolin Ke's avatar
Guolin Ke committed
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
      // get indices sorted by score, descent order
      std::vector<data_size_t> sorted_idx;
      for (data_size_t i = 0; i < num_data_; ++i) {
        sorted_idx.emplace_back(i);
      }
      std::sort(sorted_idx.begin(), sorted_idx.end(), [score](data_size_t a, data_size_t b) {return score[a] > score[b]; });
      // temp sum of postive label
      double cur_pos = 0.0;
      // total sum of postive label
      double sum_pos = 0.0;
      // accumlate of auc
      double accum = 0.0;
      // temp sum of negative label
      double cur_neg = 0.0;
      score_t threshold = score[sorted_idx[0]];
      if (weights_ == nullptr) {  // not weights
        for (data_size_t i = 0; i < num_data_; ++i) {
          const float cur_label = label_[sorted_idx[i]];
          const score_t cur_score = score[sorted_idx[i]];
          // new threshold
          if (cur_score != threshold) {
            threshold = cur_score;
            // accmulate
            accum += cur_neg*(cur_pos * 0.5 + sum_pos);
            sum_pos += cur_pos;
            // reset
            cur_neg = cur_pos = 0.0;
          }
          cur_neg += 1.0 - cur_label;
          cur_pos += cur_label;
        }
      } else {  // has weights
        for (data_size_t i = 0; i < num_data_; ++i) {
          const float cur_label = label_[sorted_idx[i]];
          const score_t cur_score = score[sorted_idx[i]];
          const float cur_weight = weights_[sorted_idx[i]];
          // new threshold
          if (cur_score != threshold) {
            threshold = cur_score;
            // accmulate
            accum += cur_neg*(cur_pos * 0.5 + sum_pos);
            sum_pos += cur_pos;
            // reset
            cur_neg = cur_pos = 0.0;
          }
          cur_neg += (1.0 - cur_label)*cur_weight;
          cur_pos += cur_label*cur_weight;
        }
      }
      accum += cur_neg*(cur_pos * 0.5 + sum_pos);
      sum_pos += cur_pos;
      double auc = 1.0;
      if (sum_pos > 0.0f && sum_pos != sum_weights_) {
        auc = accum / (sum_pos *(sum_weights_ - sum_pos));
      }
wxchan's avatar
wxchan committed
232
      if (output_freq_ > 0 && iter % output_freq_ == 0){
233
        Log::Info("Iteration:%d, %s's %s: %f", iter, name, "auc", auc);
wxchan's avatar
wxchan committed
234
      }
wxchan's avatar
wxchan committed
235
      return auc;
Guolin Ke's avatar
Guolin Ke committed
236
    }
wxchan's avatar
wxchan committed
237
    return 0.0f;
Guolin Ke's avatar
Guolin Ke committed
238
239
240
  }

private:
Hui Xue's avatar
Hui Xue committed
241
  /*! \brief Output frequency */
Guolin Ke's avatar
Guolin Ke committed
242
243
244
245
246
247
248
249
250
251
252
253
254
255
  int output_freq_;
  /*! \brief Number of data */
  data_size_t num_data_;
  /*! \brief Pointer of label */
  const float* label_;
  /*! \brief Pointer of weighs */
  const float* weights_;
  /*! \brief Sum weights */
  double sum_weights_;
  /*! \brief Name of test set */
  const char* name;
};

}  // namespace LightGBM
Guolin Ke's avatar
Guolin Ke committed
256
#endif   // LightGBM_METRIC_BINARY_METRIC_HPP_