Spaces:
Running
Running
MilesCranmer
commited on
Commit
•
7a40f51
1
Parent(s):
24f5dee
Correctly parse list of model selection
Browse files- pysr/sr.py +1 -0
pysr/sr.py
CHANGED
@@ -234,6 +234,7 @@ class PySRRegressor(MultiOutputMixin, RegressorMixin, BaseEstimator):
|
|
234 |
Model selection criterion when selecting a final expression from
|
235 |
the list of best expression at each complexity.
|
236 |
Can be 'accuracy', 'best', or 'score'.
|
|
|
237 |
- `"accuracy"` selects the candidate model with the lowest loss
|
238 |
(highest accuracy).
|
239 |
- `"score"` selects the candidate model with the highest score.
|
|
|
234 |
Model selection criterion when selecting a final expression from
|
235 |
the list of best expression at each complexity.
|
236 |
Can be 'accuracy', 'best', or 'score'.
|
237 |
+
|
238 |
- `"accuracy"` selects the candidate model with the lowest loss
|
239 |
(highest accuracy).
|
240 |
- `"score"` selects the candidate model with the highest score.
|