Spaces:
Sleeping
Sleeping
MilesCranmer
commited on
Commit
•
8575fba
1
Parent(s):
9351408
Improve docstring
Browse files- pysr/sr.py +3 -1
pysr/sr.py
CHANGED
@@ -205,7 +205,9 @@ class PySRRegressor(MultiOutputMixin, RegressorMixin, BaseEstimator):
|
|
205 |
Parameters
|
206 |
----------
|
207 |
model_selection : str, default="best"
|
208 |
-
Model selection criterion
|
|
|
|
|
209 |
- `"accuracy"` selects the candidate model with the lowest loss
|
210 |
(highest accuracy).
|
211 |
- `"score"` selects the candidate model with the highest score.
|
|
|
205 |
Parameters
|
206 |
----------
|
207 |
model_selection : str, default="best"
|
208 |
+
Model selection criterion when selecting a final expression from
|
209 |
+
the list of best expression at each complexity.
|
210 |
+
Can be 'accuracy', 'best', or 'score'.
|
211 |
- `"accuracy"` selects the candidate model with the lowest loss
|
212 |
(highest accuracy).
|
213 |
- `"score"` selects the candidate model with the highest score.
|