Spaces:
Running
Running
Let user know compilation is taking place
Browse files- pysr/sr.py +3 -0
pysr/sr.py
CHANGED
|
@@ -1529,6 +1529,9 @@ class PySRRegressor(MultiOutputMixin, RegressorMixin, BaseEstimator):
|
|
| 1529 |
julia_kwargs = mutated_params["julia_kwargs"]
|
| 1530 |
|
| 1531 |
# Start julia backend processes
|
|
|
|
|
|
|
|
|
|
| 1532 |
Main = init_julia(self.julia_project, julia_kwargs=julia_kwargs)
|
| 1533 |
|
| 1534 |
if cluster_manager is not None:
|
|
|
|
| 1529 |
julia_kwargs = mutated_params["julia_kwargs"]
|
| 1530 |
|
| 1531 |
# Start julia backend processes
|
| 1532 |
+
if not already_ran and update_verbosity != 0:
|
| 1533 |
+
print("Compiling Julia backend...")
|
| 1534 |
+
|
| 1535 |
Main = init_julia(self.julia_project, julia_kwargs=julia_kwargs)
|
| 1536 |
|
| 1537 |
if cluster_manager is not None:
|