Daniel Mesejo

Results 1 issues of Daniel Mesejo

There is a mismatch between manually loading the split_conditions via `json.load` and via `model.load_model`: ```python import xgboost as xgb import json with open("model-single-tree.json") as infile: data = json.load(infile) json_trees =...