Remove failing assert

Regression scores do not necessarily have to be between 0 and 1 (as opposed to classification scores).
This commit is contained in:
ABIGAIL GOLDSTEEN 2022-04-05 14:51:02 +03:00 committed by GitHub Enterprise
parent 8290be0173
commit 6b04fd5564

View file

@ -33,4 +33,3 @@ def test_sklearn_regressor():
assert (pred.shape[0] == x_test.shape[0])
score = model.score(test)
assert (0 <= score <= 1)