| 60 | } |
| 61 | |
| 62 | EFeatureType TFeatureEstimators::GetEstimatorSourceType(TEstimatorId estimatorId) const { |
| 63 | if (estimatorId.IsOnline) { |
| 64 | return OnlineFeatureEstimators.at(estimatorId.Id)->GetSourceType(); |
| 65 | } else { |
| 66 | return FeatureEstimators.at(estimatorId.Id)->GetSourceType(); |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | EFeatureType TFeatureEstimators::GetEstimatorSourceType(const TGuid& guid) const { |
| 71 | CB_ENSURE( |
no test coverage detected