Skip to content

Commit

Permalink
fix windows rounding error
Browse files Browse the repository at this point in the history
  • Loading branch information
rasbt committed Jun 29, 2020
1 parent 76da799 commit 9d5e885
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mlxtend/evaluate/tests/test_bias_variance_decomp.py
Expand Up @@ -96,6 +96,6 @@ def test_mse_bagging():
loss='mse',
random_seed=123)

assert round(avg_expected_loss, 3) == 18.622
assert round(avg_bias, 3) == 15.378
assert round(avg_var, 3) == 3.244
assert round(avg_expected_loss, 2) == 18.62
assert round(avg_bias, 2) == 15.38
assert round(avg_var, 2) == 3.24

0 comments on commit 9d5e885

Please sign in to comment.