"vscode:/vscode.git/clone" did not exist on "494fef34eb390db59dafdaa964baac112cb08949"
gbdt_prediction.cpp 3.19 KB
Newer Older
1
2
3
4
/*!
 * Copyright (c) 2017 Microsoft Corporation. All rights reserved.
 * Licensed under the MIT License. See LICENSE file in the project root for license information.
 */
5
#include <LightGBM/objective_function.h>
cbecker's avatar
cbecker committed
6
#include <LightGBM/prediction_early_stop.h>
7
8
#include <LightGBM/utils/openmp_wrapper.h>

9
10
#include "gbdt.h"

11
12
namespace LightGBM {

13
14
void GBDT::PredictRaw(const double* features, double* output, const PredictionEarlyStopInstance* early_stop) const {
  int early_stop_round_counter = 0;
15
16
  // set zero
  std::memset(output, 0, sizeof(double) * num_tree_per_iteration_);
cbecker's avatar
cbecker committed
17
18
  for (int i = 0; i < num_iteration_for_pred_; ++i) {
    // predict all the trees for one iteration
19
    for (int k = 0; k < num_tree_per_iteration_; ++k) {
cbecker's avatar
cbecker committed
20
      output[k] += models_[i * num_tree_per_iteration_ + k]->Predict(features);
21
    }
cbecker's avatar
cbecker committed
22
    // check early stopping
23
24
25
    ++early_stop_round_counter;
    if (early_stop->round_period == early_stop_round_counter) {
      if (early_stop->callback_function(output, num_tree_per_iteration_)) {
cbecker's avatar
cbecker committed
26
        return;
27
      }
28
      early_stop_round_counter = 0;
29
30
    }
  }
cbecker's avatar
cbecker committed
31
32
}

33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
void GBDT::PredictRawByMap(const std::unordered_map<int, double>& features, double* output, const PredictionEarlyStopInstance* early_stop) const {
  int early_stop_round_counter = 0;
  // set zero
  std::memset(output, 0, sizeof(double) * num_tree_per_iteration_);
  for (int i = 0; i < num_iteration_for_pred_; ++i) {
    // predict all the trees for one iteration
    for (int k = 0; k < num_tree_per_iteration_; ++k) {
      output[k] += models_[i * num_tree_per_iteration_ + k]->PredictByMap(features);
    }
    // check early stopping
    ++early_stop_round_counter;
    if (early_stop->round_period == early_stop_round_counter) {
      if (early_stop->callback_function(output, num_tree_per_iteration_)) {
        return;
      }
      early_stop_round_counter = 0;
    }
  }
}

53
54
void GBDT::Predict(const double* features, double* output, const PredictionEarlyStopInstance* early_stop) const {
  PredictRaw(features, output, early_stop);
Guolin Ke's avatar
Guolin Ke committed
55
56
57
58
  if (average_output_) {
    for (int k = 0; k < num_tree_per_iteration_; ++k) {
      output[k] /= num_iteration_for_pred_;
    }
Guolin Ke's avatar
Guolin Ke committed
59
60
  }
  if (objective_function_ != nullptr) {
61
62
63
64
    objective_function_->ConvertOutput(output, output);
  }
}

65
66
67
68
69
70
void GBDT::PredictByMap(const std::unordered_map<int, double>& features, double* output, const PredictionEarlyStopInstance* early_stop) const {
  PredictRawByMap(features, output, early_stop);
  if (average_output_) {
    for (int k = 0; k < num_tree_per_iteration_; ++k) {
      output[k] /= num_iteration_for_pred_;
    }
Guolin Ke's avatar
Guolin Ke committed
71
72
  }
  if (objective_function_ != nullptr) {
73
74
75
76
    objective_function_->ConvertOutput(output, output);
  }
}

77
78
79
80
81
82
83
void GBDT::PredictLeafIndex(const double* features, double* output) const {
  int total_tree = num_iteration_for_pred_ * num_tree_per_iteration_;
  for (int i = 0; i < total_tree; ++i) {
    output[i] = models_[i]->PredictLeafIndex(features);
  }
}

84
85
86
87
88
89
90
void GBDT::PredictLeafIndexByMap(const std::unordered_map<int, double>& features, double* output) const {
  int total_tree = num_iteration_for_pred_ * num_tree_per_iteration_;
  for (int i = 0; i < total_tree; ++i) {
    output[i] = models_[i]->PredictLeafIndexByMap(features);
  }
}

cbecker's avatar
cbecker committed
91
}  // namespace LightGBM