()
| 10488 | |
| 10489 | |
| 10490 | def test_quantize_unknown_param(): |
| 10491 | pool = Pool(QUERYWISE_TRAIN_FILE, column_description=QUERYWISE_CD_FILE) |
| 10492 | with pytest.raises(CatBoostError): |
| 10493 | pool.quantize(this_param_is_unknown=123) |
| 10494 | |
| 10495 | |
| 10496 | def test_iterate_leaf_indexes(): |