| 452 | FeatureManagerIdToDataProviderId[featureId])); |
| 453 | } |
| 454 | TVector<ui32> TBinarizedFeaturesManager::GetEstimatedFeatureIds() const { |
| 455 | TVector<ui32> result; |
| 456 | for (const auto& [estimatedFeature, id] : EstimatedFeatureToFeatureManagerId) { |
| 457 | Y_UNUSED(estimatedFeature); |
| 458 | result.push_back(id); |
| 459 | } |
| 460 | return result; |
| 461 | } |
| 462 | } |
no test coverage detected