| 1388 | } |
| 1389 | |
| 1390 | TString TFullModel::GetLossFunctionName() const { |
| 1391 | const TMaybe<NCatboostOptions::TLossDescription> lossDescription = GetLossDescription(*this); |
| 1392 | if (lossDescription.Defined()) { |
| 1393 | return ToString(lossDescription->GetLossFunction()); |
| 1394 | } |
| 1395 | return {}; |
| 1396 | } |
| 1397 | |
| 1398 | |
| 1399 | double TFullModel::GetBinClassProbabilityThreshold() const { |
no test coverage detected