| 24 | |
| 25 | |
| 26 | TErrorTracker BuildErrorTracker( |
| 27 | EMetricBestValue bestValueType, |
| 28 | double bestPossibleValue, |
| 29 | bool hasTest, |
| 30 | const TLearnContext& ctx |
| 31 | ) { |
| 32 | const auto& odOptions = ctx.Params.BoostingOptions->OverfittingDetector; |
| 33 | return CreateErrorTracker(odOptions, bestPossibleValue, bestValueType, hasTest); |
| 34 | } |
| 35 | |
| 36 | static void UpdateLearningFold( |
| 37 | const NCB::TTrainingDataProviders& data, |
no test coverage detected