Get expected float feature count for model
(&self)
| 225 | |
| 226 | /// Get expected float feature count for model |
| 227 | pub fn get_float_features_count(&self) -> usize { |
| 228 | unsafe { catboost_sys::GetFloatFeaturesCount(self.handle) } |
| 229 | } |
| 230 | |
| 231 | /// Get expected categorical feature count for model |
| 232 | pub fn get_cat_features_count(&self) -> usize { |
nothing calls this directly
no test coverage detected