(model)
| 1369 | check_equality(model, cb_stream) |
| 1370 | |
| 1371 | def check_load_from_string(model): |
| 1372 | cb_blob = CatBoost() |
| 1373 | cb_blob.load_model(blob=open(output_model_path, 'rb').read()) |
| 1374 | check_equality(model, cb_blob) |
| 1375 | |
| 1376 | def fill_check_model(params, train_file, test_file, cd_file): |
| 1377 | model, _ = fit_from_file(params, train_file, test_file, cd_file) |
no test coverage detected