Spaces:
Sleeping
Sleeping
MilesCranmer
commited on
Commit
•
f89d890
1
Parent(s):
a512af0
Trigger pre-commit
Browse files
README.md
CHANGED
@@ -277,7 +277,8 @@ SymPy format (`sympy_format` - which you can also get with `model.sympy()`), and
|
|
277 |
Note that `PySRRegressor` stores the state of the last search, and will restart from where you left off the next time you call `.fit()`, assuming you have set `warm_start=True`.
|
278 |
This will cause problems if significant changes are made to the search parameters (like changing the operators). You can run `model.reset()` to reset the state.
|
279 |
|
280 |
-
You will notice that PySR will save two files:
|
|
|
281 |
The csv file is a list of equations and their losses, and the pkl file is a saved state of the model.
|
282 |
You may load the model from the `pkl` file with:
|
283 |
|
|
|
277 |
Note that `PySRRegressor` stores the state of the last search, and will restart from where you left off the next time you call `.fit()`, assuming you have set `warm_start=True`.
|
278 |
This will cause problems if significant changes are made to the search parameters (like changing the operators). You can run `model.reset()` to reset the state.
|
279 |
|
280 |
+
You will notice that PySR will save two files:
|
281 |
+
`hall_of_fame...csv` and `hall_of_fame...pkl`.
|
282 |
The csv file is a list of equations and their losses, and the pkl file is a saved state of the model.
|
283 |
You may load the model from the `pkl` file with:
|
284 |
|