Spaces:
Sleeping
Sleeping
deepsource-autofix[bot]
commited on
Commit
•
224f906
1
Parent(s):
a190947
Format code with black
Browse filesThis commit fixes the style issues introduced in a190947 according to the output
from black.
Details: https://deepsource.io/gh/MilesCranmer/PySR/transform/f088c279-f5ed-4ac1-9fd9-aad0d03da1fe/
- test/test.py +1 -1
test/test.py
CHANGED
@@ -217,7 +217,7 @@ class TestPipeline(unittest.TestCase):
|
|
217 |
model = PySRRegressor(
|
218 |
unary_operators=["cos"],
|
219 |
select_k_features=3,
|
220 |
-
early_stop_condition=1e-4,
|
221 |
Xresampled=Xresampled,
|
222 |
maxsize=12,
|
223 |
**self.default_test_kwargs,
|
|
|
217 |
model = PySRRegressor(
|
218 |
unary_operators=["cos"],
|
219 |
select_k_features=3,
|
220 |
+
early_stop_condition=1e-4, # Stop once most accurate equation is <1e-4 MSE
|
221 |
Xresampled=Xresampled,
|
222 |
maxsize=12,
|
223 |
**self.default_test_kwargs,
|