| 446 | } |
| 447 | |
| 448 | TCatFeatureUniqueValuesCounts TBinarizedFeaturesManager::GetUniqueValuesCounts(ui32 featureId) const { |
| 449 | CB_ENSURE(IsCat(featureId)); |
| 450 | return QuantizedFeaturesInfo->GetUniqueValuesCounts( |
| 451 | QuantizedFeaturesInfo->GetFeaturesLayout()->GetInternalFeatureIdx<EFeatureType::Categorical>( |
| 452 | FeatureManagerIdToDataProviderId[featureId])); |
| 453 | } |
| 454 | TVector<ui32> TBinarizedFeaturesManager::GetEstimatedFeatureIds() const { |
| 455 | TVector<ui32> result; |
| 456 | for (const auto& [estimatedFeature, id] : EstimatedFeatureToFeatureManagerId) { |