| 14 | } |
| 15 | |
| 16 | void TCtrFeature::FBDeserialize(const NCatBoostFbs::TCtrFeature* fbObj) { |
| 17 | if (fbObj == nullptr) { |
| 18 | return; |
| 19 | } |
| 20 | Ctr.FBDeserialize(fbObj->Ctr()); |
| 21 | if (fbObj->Borders() && fbObj->Borders()->size() != 0) { |
| 22 | Borders.assign(fbObj->Borders()->begin(), fbObj->Borders()->end()); |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | flatbuffers::Offset<NCatBoostFbs::TFloatFeature> TFloatFeature::FBSerialize( |
| 27 | flatbuffers::FlatBufferBuilder& builder |
no test coverage detected