From c85181dd8a1c8e567ef6ab14f01d1740c4ddfd01 Mon Sep 17 00:00:00 2001 From: Jiaming Yuan Date: Thu, 28 Mar 2019 03:30:46 +0800 Subject: [PATCH] Remove remaining `silent` and `debug_verbose`. (#4299) --- tests/python-gpu/test_large_sizes.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/tests/python-gpu/test_large_sizes.py b/tests/python-gpu/test_large_sizes.py index 4c6dc3234..9241587b1 100644 --- a/tests/python-gpu/test_large_sizes.py +++ b/tests/python-gpu/test_large_sizes.py @@ -55,16 +55,14 @@ class TestGPU(unittest.TestCase): 'tree_method': 'hist', 'nthread': 0, 'eta': 1, - 'silent': 0, - 'debug_verbose': 5, + 'verbosity': 3, 'objective': 'binary:logistic', 'eval_metric': 'auc'} ag_param2 = {'max_depth': max_depth, 'tree_method': 'gpu_hist', 'nthread': 0, 'eta': 1, - 'silent': 0, - 'debug_verbose': 5, + 'verbosity': 3, 'n_gpus': 1, 'objective': 'binary:logistic', 'max_bin': max_bin, @@ -73,8 +71,7 @@ class TestGPU(unittest.TestCase): 'tree_method': 'gpu_hist', 'nthread': 0, 'eta': 1, - 'silent': 0, - 'debug_verbose': 5, + 'verbosity': 3, 'n_gpus': -1, 'objective': 'binary:logistic', 'max_bin': max_bin,