Skip to content

Commit

Permalink
Relax relative test performance requirements for Python 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ViktorC committed Jul 4, 2019
1 parent 2d77123 commit 2d86ee0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/test_predict.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def test_binary_classification_f1_score(data_set, model, min_f1_score):
(osd.BostonDataSet('data/boston/boston.csv'), osp.BaggedTreesRegression(number_of_models=10),
ske.BaggingRegressor(n_estimators=10), 1.1, .1),
(osd.BostonDataSet('data/boston/boston.csv'), osp.RandomForestRegression(number_of_models=10),
ske.RandomForestRegressor(n_estimators=10), 1.2, .1),
ske.RandomForestRegressor(n_estimators=10), 1.25, .1),
(osd.BostonDataSet('data/boston/boston.csv'), osp.BoostedTreesRegression(number_of_models=5),
ske.GradientBoostingRegressor(n_estimators=5), 1.1, .1)
])
Expand Down

0 comments on commit 2d86ee0

Please sign in to comment.