Spaces:
Running
Running
Commit
·
2fbf19c
1
Parent(s):
be87321
Expand docstring for PySRRegressor
Browse files- pysr/sr.py +6 -1
pysr/sr.py
CHANGED
|
@@ -197,7 +197,12 @@ class CallableEquation:
|
|
| 197 |
|
| 198 |
class PySRRegressor(BaseEstimator, RegressorMixin, MultiOutputMixin):
|
| 199 |
"""
|
| 200 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 201 |
|
| 202 |
Parameters
|
| 203 |
----------
|
|
|
|
| 197 |
|
| 198 |
class PySRRegressor(BaseEstimator, RegressorMixin, MultiOutputMixin):
|
| 199 |
"""
|
| 200 |
+
High-performance symbolic regression.
|
| 201 |
+
|
| 202 |
+
This is the scikit-learn interface for SymbolicRegression.jl.
|
| 203 |
+
This model will automatically search for equations which fit
|
| 204 |
+
a given dataset subject to a particular loss and set of
|
| 205 |
+
constraints.
|
| 206 |
|
| 207 |
Parameters
|
| 208 |
----------
|