| 367 | } |
| 368 | |
| 369 | std::vector<double> FeatureImportance(int num_iteration, int importance_type) { |
| 370 | return boosting_->FeatureImportance(num_iteration, importance_type); |
| 371 | } |
| 372 | |
| 373 | double GetLeafValue(int tree_idx, int leaf_idx) const { |
| 374 | return dynamic_cast<GBDTBase*>(boosting_.get())->GetLeafValue(tree_idx, leaf_idx); |
no outgoing calls
no test coverage detected