Spaces:
Sleeping
Sleeping
MilesCranmer
commited on
Commit
•
89e48d8
1
Parent(s):
673c1d2
Speed up scikit-learn tests
Browse files- test/test.py +1 -1
test/test.py
CHANGED
@@ -343,5 +343,5 @@ class TestMiscellaneous(unittest.TestCase):
|
|
343 |
|
344 |
def test_scikit_learn_compatibility(self):
|
345 |
"""Test PySRRegressor compatibility with scikit-learn."""
|
346 |
-
model = PySRRegressor()
|
347 |
check_estimator(model)
|
|
|
343 |
|
344 |
def test_scikit_learn_compatibility(self):
|
345 |
"""Test PySRRegressor compatibility with scikit-learn."""
|
346 |
+
model = PySRRegressor(max_evals=10000) # Return early.
|
347 |
check_estimator(model)
|