| 122 | } |
| 123 | |
| 124 | static inline bool NeedPriorEstimation(const TVector<NCatboostOptions::TCtrDescription>& descriptions) { |
| 125 | for (const auto& description : descriptions) { |
| 126 | if (description.PriorEstimation != EPriorEstimation::No) { |
| 127 | return true; |
| 128 | } |
| 129 | } |
| 130 | return false; |
| 131 | } |
| 132 | |
| 133 | static inline void EstimatePriors(const NCB::TTrainingDataProvider& dataProvider, |
| 134 | TBinarizedFeaturesManager& featureManager, |