Spaces:
Sleeping
Sleeping
MilesCranmer
commited on
Commit
•
7021459
1
Parent(s):
9f3b918
docs: separate runtime params
Browse files- pysr/sr.py +4 -3
pysr/sr.py
CHANGED
@@ -1610,15 +1610,16 @@ class PySRRegressor(MultiOutputMixin, RegressorMixin, BaseEstimator):
|
|
1610 |
unary_operators = runtime_params.unary_operators
|
1611 |
maxdepth = runtime_params.maxdepth
|
1612 |
constraints = runtime_params.constraints
|
1613 |
-
nested_constraints = self.nested_constraints
|
1614 |
-
complexity_of_operators = self.complexity_of_operators
|
1615 |
multithreading = runtime_params.multithreading
|
1616 |
-
cluster_manager = self.cluster_manager
|
1617 |
batch_size = runtime_params.batch_size
|
1618 |
update_verbosity = runtime_params.update_verbosity
|
1619 |
progress = runtime_params.progress
|
1620 |
warmup_maxsize_by = runtime_params.warmup_maxsize_by
|
1621 |
|
|
|
|
|
|
|
|
|
1622 |
# Start julia backend processes
|
1623 |
if not already_ran and update_verbosity != 0:
|
1624 |
print("Compiling Julia backend...")
|
|
|
1610 |
unary_operators = runtime_params.unary_operators
|
1611 |
maxdepth = runtime_params.maxdepth
|
1612 |
constraints = runtime_params.constraints
|
|
|
|
|
1613 |
multithreading = runtime_params.multithreading
|
|
|
1614 |
batch_size = runtime_params.batch_size
|
1615 |
update_verbosity = runtime_params.update_verbosity
|
1616 |
progress = runtime_params.progress
|
1617 |
warmup_maxsize_by = runtime_params.warmup_maxsize_by
|
1618 |
|
1619 |
+
nested_constraints = self.nested_constraints
|
1620 |
+
complexity_of_operators = self.complexity_of_operators
|
1621 |
+
cluster_manager = self.cluster_manager
|
1622 |
+
|
1623 |
# Start julia backend processes
|
1624 |
if not already_ran and update_verbosity != 0:
|
1625 |
print("Compiling Julia backend...")
|