Spaces:
Sleeping
Sleeping
MilesCranmer
commited on
Commit
•
fe3d590
1
Parent(s):
62067fc
Update documentation links
Browse files- README.md +4 -4
- pysr/sr.py +2 -2
README.md
CHANGED
@@ -23,7 +23,7 @@ PySR is built on an extremely optimized pure-Julia backend, and uses regularized
|
|
23 |
(pronounced like *py* as in python, and then *sur* as in surface)
|
24 |
|
25 |
If you find PySR useful, please cite it using the citation information given in [CITATION.md](https://github.com/MilesCranmer/PySR/blob/master/CITATION.md).
|
26 |
-
If you've finished a project with PySR, please submit a PR to showcase your work on the [Research Showcase page](https://astroautomata.com/PySR
|
27 |
|
28 |
|
29 |
<div align="center">
|
@@ -175,9 +175,9 @@ model = PySRRegressor.from_file("hall_of_fame.2022-08-10_100832.281.pkl")
|
|
175 |
|
176 |
There are several other useful features such as denoising (e.g., `denoising=True`),
|
177 |
feature selection (e.g., `select_k_features=3`).
|
178 |
-
For examples of these and other features, see the [examples page](https://astroautomata.com/PySR
|
179 |
-
For a detailed look at more options, see the [options page](https://astroautomata.com/PySR
|
180 |
-
You can also see the full API at [this page](https://astroautomata.com/PySR
|
181 |
|
182 |
## Detailed Example
|
183 |
|
|
|
23 |
(pronounced like *py* as in python, and then *sur* as in surface)
|
24 |
|
25 |
If you find PySR useful, please cite it using the citation information given in [CITATION.md](https://github.com/MilesCranmer/PySR/blob/master/CITATION.md).
|
26 |
+
If you've finished a project with PySR, please submit a PR to showcase your work on the [Research Showcase page](https://astroautomata.com/PySR/papers)!
|
27 |
|
28 |
|
29 |
<div align="center">
|
|
|
175 |
|
176 |
There are several other useful features such as denoising (e.g., `denoising=True`),
|
177 |
feature selection (e.g., `select_k_features=3`).
|
178 |
+
For examples of these and other features, see the [examples page](https://astroautomata.com/PySR/examples).
|
179 |
+
For a detailed look at more options, see the [options page](https://astroautomata.com/PySR/options).
|
180 |
+
You can also see the full API at [this page](https://astroautomata.com/PySR/api).
|
181 |
|
182 |
## Detailed Example
|
183 |
|
pysr/sr.py
CHANGED
@@ -225,7 +225,7 @@ class PySRRegressor(MultiOutputMixin, RegressorMixin, BaseEstimator):
|
|
225 |
Most default parameters have been tuned over several example equations,
|
226 |
but you should adjust `niterations`, `binary_operators`, `unary_operators`
|
227 |
to your requirements. You can view more detailed explanations of the options
|
228 |
-
on the [options page](https://astroautomata.com/PySR
|
229 |
documentation.
|
230 |
|
231 |
Parameters
|
@@ -1683,7 +1683,7 @@ class PySRRegressor(MultiOutputMixin, RegressorMixin, BaseEstimator):
|
|
1683 |
if X.shape[0] > 10000 and not self.batching:
|
1684 |
warnings.warn(
|
1685 |
"Note: you are running with more than 10,000 datapoints. "
|
1686 |
-
"You should consider turning on batching (https://astroautomata.com/PySR
|
1687 |
"You should also reconsider if you need that many datapoints. "
|
1688 |
"Unless you have a large amount of noise (in which case you "
|
1689 |
"should smooth your dataset first), generally < 10,000 datapoints "
|
|
|
225 |
Most default parameters have been tuned over several example equations,
|
226 |
but you should adjust `niterations`, `binary_operators`, `unary_operators`
|
227 |
to your requirements. You can view more detailed explanations of the options
|
228 |
+
on the [options page](https://astroautomata.com/PySR/options) of the
|
229 |
documentation.
|
230 |
|
231 |
Parameters
|
|
|
1683 |
if X.shape[0] > 10000 and not self.batching:
|
1684 |
warnings.warn(
|
1685 |
"Note: you are running with more than 10,000 datapoints. "
|
1686 |
+
"You should consider turning on batching (https://astroautomata.com/PySR/options/#batching). "
|
1687 |
"You should also reconsider if you need that many datapoints. "
|
1688 |
"Unless you have a large amount of noise (in which case you "
|
1689 |
"should smooth your dataset first), generally < 10,000 datapoints "
|