| 251 | } |
| 252 | |
| 253 | void Application::InitPredict() { |
| 254 | boosting_.reset( |
| 255 | Boosting::CreateBoosting("gbdt", config_.input_model.c_str())); |
| 256 | Log::Info("Finished initializing prediction, total used %d iterations", boosting_->GetCurrentIteration()); |
| 257 | } |
| 258 | |
| 259 | void Application::ConvertModel() { |
| 260 | boosting_.reset( |
no test coverage detected