| 1 | #include "features_layout_helpers.h" |
| 2 | |
| 3 | NCB::TFeaturesLayout MakeFeaturesLayout(const TFullModel& model) |
| 4 | { |
| 5 | return NCB::TFeaturesLayout( |
| 6 | model.ModelTrees->GetFloatFeatures(), |
| 7 | model.ModelTrees->GetCatFeatures(), |
| 8 | model.ModelTrees->GetTextFeatures(), |
| 9 | model.ModelTrees->GetEmbeddingFeatures() |
| 10 | ); |
| 11 | } |
no test coverage detected