Spaces:
Running
Running
Commit
·
03ba6dc
1
Parent(s):
c1cff38
Fix bad keyword arguments in test
Browse files- test/test.py +1 -3
test/test.py
CHANGED
|
@@ -193,11 +193,9 @@ class TestBest(unittest.TestCase):
|
|
| 193 |
|
| 194 |
self.model = PySRRegressor(
|
| 195 |
equation_file="equation_file.csv",
|
| 196 |
-
|
| 197 |
extra_sympy_mappings={},
|
| 198 |
output_jax_format=False,
|
| 199 |
-
multioutput=False,
|
| 200 |
-
nout=1,
|
| 201 |
)
|
| 202 |
self.model.n_features = 2
|
| 203 |
self.model.refresh()
|
|
|
|
| 193 |
|
| 194 |
self.model = PySRRegressor(
|
| 195 |
equation_file="equation_file.csv",
|
| 196 |
+
variable_names="x0 x1".split(" "),
|
| 197 |
extra_sympy_mappings={},
|
| 198 |
output_jax_format=False,
|
|
|
|
|
|
|
| 199 |
)
|
| 200 |
self.model.n_features = 2
|
| 201 |
self.model.refresh()
|