Spaces:
Running
Running
MilesCranmer
commited on
Commit
•
9640492
1
Parent(s):
5cee3b5
Add missing kwarg for final print loop
Browse files- pysr/sr.py +2 -1
pysr/sr.py
CHANGED
@@ -251,7 +251,8 @@ def pysr(X=None, y=None, weights=None,
|
|
251 |
weightMutateOperator=weightMutateOperator,
|
252 |
weightRandomize=weightRandomize,
|
253 |
weightSimplify=weightSimplify,
|
254 |
-
constraints=constraints
|
|
|
255 |
|
256 |
kwargs = {**_set_paths(tempdir), **kwargs}
|
257 |
|
|
|
251 |
weightMutateOperator=weightMutateOperator,
|
252 |
weightRandomize=weightRandomize,
|
253 |
weightSimplify=weightSimplify,
|
254 |
+
constraints=constraints,
|
255 |
+
extra_sympy_mappings=extra_sympy_mappings)
|
256 |
|
257 |
kwargs = {**_set_paths(tempdir), **kwargs}
|
258 |
|