Spaces:
Sleeping
Sleeping
MilesCranmer
commited on
Merge pull request #252 from MilesCranmer/v15-backend
Browse files- pysr/sr.py +1 -1
- pysr/version.py +2 -2
pysr/sr.py
CHANGED
@@ -1573,7 +1573,7 @@ class PySRRegressor(MultiOutputMixin, RegressorMixin, BaseEstimator):
|
|
1573 |
complexity_of_constants=self.complexity_of_constants,
|
1574 |
complexity_of_variables=self.complexity_of_variables,
|
1575 |
nested_constraints=nested_constraints,
|
1576 |
-
|
1577 |
maxsize=int(self.maxsize),
|
1578 |
output_file=_escape_filename(self.equation_file_),
|
1579 |
npopulations=int(self.populations),
|
|
|
1573 |
complexity_of_constants=self.complexity_of_constants,
|
1574 |
complexity_of_variables=self.complexity_of_variables,
|
1575 |
nested_constraints=nested_constraints,
|
1576 |
+
elementwise_loss=custom_loss,
|
1577 |
maxsize=int(self.maxsize),
|
1578 |
output_file=_escape_filename(self.equation_file_),
|
1579 |
npopulations=int(self.populations),
|
pysr/version.py
CHANGED
@@ -1,2 +1,2 @@
|
|
1 |
-
__version__ = "0.11.
|
2 |
-
__symbolic_regression_jl_version__ = "0.
|
|
|
1 |
+
__version__ = "0.11.12"
|
2 |
+
__symbolic_regression_jl_version__ = "0.15.0"
|