Skip to content

Commit

Permalink
Relax test for decision stump in distributed environment. (dmlc#6919)
Browse files Browse the repository at this point in the history
  • Loading branch information
trivialfis committed May 3, 2021
1 parent 6e0ee55 commit 08ea8a6
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion tests/python/test_with_dask.py
Original file line number Diff line number Diff line change
Expand Up @@ -1023,7 +1023,17 @@ def run_updater_test(
evals=[(m, 'train')])['history']
note(history)
history = history['train'][dataset.metric]
assert tm.non_increasing(history)

def is_stump():
return params["max_depth"] == 1 or params["max_leaves"] == 1

def minimum_bin():
return "max_bin" in params and params["max_bin"] == 2

if minimum_bin() and is_stump():
assert tm.non_increasing(history, tolerance=1e-3)
else:
assert tm.non_increasing(history)
# Make sure that it's decreasing
assert history[-1] < history[0]

Expand Down

0 comments on commit 08ea8a6

Please sign in to comment.