Spaces:
Sleeping
Sleeping
MilesCranmer
commited on
Commit
•
c281fea
1
Parent(s):
d8ae9fc
Turn back on progress bar
Browse files- pysr/sr.py +1 -0
- setup.py +1 -1
pysr/sr.py
CHANGED
@@ -1163,6 +1163,7 @@ class PySRRegressor(BaseEstimator, RegressorMixin):
|
|
1163 |
annealing=self.params["annealing"],
|
1164 |
stateReturn=True, # Required for state saving.
|
1165 |
use_symbolic_utils=self.params["use_symbolic_utils"],
|
|
|
1166 |
)
|
1167 |
|
1168 |
np_dtype = {16: np.float16, 32: np.float32, 64: np.float64}[
|
|
|
1163 |
annealing=self.params["annealing"],
|
1164 |
stateReturn=True, # Required for state saving.
|
1165 |
use_symbolic_utils=self.params["use_symbolic_utils"],
|
1166 |
+
progress=self.params["progress"],
|
1167 |
)
|
1168 |
|
1169 |
np_dtype = {16: np.float16, 32: np.float32, 64: np.float64}[
|
setup.py
CHANGED
@@ -8,7 +8,7 @@ except FileNotFoundError:
|
|
8 |
|
9 |
setuptools.setup(
|
10 |
name="pysr",
|
11 |
-
version="0.7.
|
12 |
author="Miles Cranmer",
|
13 |
author_email="[email protected]",
|
14 |
description="Simple and efficient symbolic regression",
|
|
|
8 |
|
9 |
setuptools.setup(
|
10 |
name="pysr",
|
11 |
+
version="0.7.2",
|
12 |
author="Miles Cranmer",
|
13 |
author_email="[email protected]",
|
14 |
description="Simple and efficient symbolic regression",
|