Spaces:
Running
Running
Commit
·
f1e7133
1
Parent(s):
69fc6d0
Update dead links to readthedocs
Browse files- pysr/sr.py +2 -2
pysr/sr.py
CHANGED
|
@@ -434,7 +434,7 @@ class PySRRegressor(BaseEstimator, RegressorMixin):
|
|
| 434 |
equations, but you should adjust `niterations`,
|
| 435 |
`binary_operators`, `unary_operators` to your requirements.
|
| 436 |
You can view more detailed explanations of the options on the
|
| 437 |
-
[options page](https://
|
| 438 |
|
| 439 |
:param model_selection: How to select a model. Can be 'accuracy' or 'best'. The default, 'best', will optimize a combination of complexity and accuracy.
|
| 440 |
:type model_selection: str
|
|
@@ -1038,7 +1038,7 @@ class PySRRegressor(BaseEstimator, RegressorMixin):
|
|
| 1038 |
|
| 1039 |
if len(X) > 10000 and not batching:
|
| 1040 |
warnings.warn(
|
| 1041 |
-
"Note: you are running with more than 10,000 datapoints. You should consider turning on batching (https://
|
| 1042 |
)
|
| 1043 |
|
| 1044 |
X, selection = _handle_feature_selection(
|
|
|
|
| 434 |
equations, but you should adjust `niterations`,
|
| 435 |
`binary_operators`, `unary_operators` to your requirements.
|
| 436 |
You can view more detailed explanations of the options on the
|
| 437 |
+
[options page](https://astroautomata.com/PySR/#/options) of the documentation.
|
| 438 |
|
| 439 |
:param model_selection: How to select a model. Can be 'accuracy' or 'best'. The default, 'best', will optimize a combination of complexity and accuracy.
|
| 440 |
:type model_selection: str
|
|
|
|
| 1038 |
|
| 1039 |
if len(X) > 10000 and not batching:
|
| 1040 |
warnings.warn(
|
| 1041 |
+
"Note: you are running with more than 10,000 datapoints. You should consider turning on batching (https://astroautomata.com/PySR/#/options?id=batching). You should also reconsider if you need that many datapoints. Unless you have a large amount of noise (in which case you should smooth your dataset first), generally < 10,000 datapoints is enough to find a functional form with symbolic regression. More datapoints will lower the search speed."
|
| 1042 |
)
|
| 1043 |
|
| 1044 |
X, selection = _handle_feature_selection(
|