diff --git a/python/tvm/autotvm/tuner/xgboost_cost_model.py b/python/tvm/autotvm/tuner/xgboost_cost_model.py index 305244808a33..15a3390d3522 100644 --- a/python/tvm/autotvm/tuner/xgboost_cost_model.py +++ b/python/tvm/autotvm/tuner/xgboost_cost_model.py @@ -118,7 +118,7 @@ def __init__(self, task, feature_type, loss_type, num_threads=None, log_interval else: raise RuntimeError("Invalid loss type: " + loss_type) - self.xgb_params['silent'] = 1 + self.xgb_params['verbosity'] = 0 if num_threads: self.xgb_params['nthread'] = num_threads self.bst = None