| 187 | } |
| 188 | |
| 189 | void MultiplyScore(const int cur_tree_id, double val) { |
| 190 | train_score_updater_->MultiplyScore(val, cur_tree_id); |
| 191 | for (auto& score_updater : valid_score_updater_) { |
| 192 | score_updater->MultiplyScore(val, cur_tree_id); |
| 193 | } |
| 194 | } |
| 195 | |
| 196 | void AddValidDataset(const Dataset* valid_data, |
| 197 | const std::vector<const Metric*>& valid_metrics) override { |
no outgoing calls
no test coverage detected