| 333 | |
| 334 | template <class Container> |
| 335 | inline |
| 336 | ColumnVector |
| 337 | DecisionTree<Container>::predict(MappedIntegerVector cat_features, |
| 338 | MappedColumnVector con_features) const { |
| 339 | Index leaf_index = search(cat_features, con_features); |
| 340 | return statPredict(predictions.row(leaf_index)); |
| 341 | } |
| 342 | // ------------------------------------------------------------ |
| 343 | |
| 344 | template <class Container> |