Spaces:
Sleeping
Sleeping
Commit
·
ccdbeb5
1
Parent(s):
9df0659
Fix docs subtitle
Browse files- docs/options.md +2 -2
docs/options.md
CHANGED
|
@@ -127,7 +127,7 @@ You can pass a list of strings naming each column of `X` with
|
|
| 127 |
and the columns will be used as variable names. Make sure only
|
| 128 |
alphabetical characters and `_` are used in these names.
|
| 129 |
|
| 130 |
-
##
|
| 131 |
|
| 132 |
One can limit the complexity of specific operators with the `constraints` parameter.
|
| 133 |
There is a "maxsize" parameter to PySR, but there is also an operator-level
|
|
@@ -141,7 +141,7 @@ What this says is that: a power law x^y can have an expression of arbitrary (-1)
|
|
| 141 |
I find this helps a lot for getting more interpretable equations.
|
| 142 |
The other terms say that each multiplication can only have sub-expressions
|
| 143 |
of up to complexity 3 (e.g., 5.0 + x2) in each side, and cosine can only operate on
|
| 144 |
-
expressions of complexity 5 (e.g., 5.0 + x2
|
| 145 |
|
| 146 |
## LaTeX, SymPy, callables
|
| 147 |
|
|
|
|
| 127 |
and the columns will be used as variable names. Make sure only
|
| 128 |
alphabetical characters and `_` are used in these names.
|
| 129 |
|
| 130 |
+
## Constraining operator complexity
|
| 131 |
|
| 132 |
One can limit the complexity of specific operators with the `constraints` parameter.
|
| 133 |
There is a "maxsize" parameter to PySR, but there is also an operator-level
|
|
|
|
| 141 |
I find this helps a lot for getting more interpretable equations.
|
| 142 |
The other terms say that each multiplication can only have sub-expressions
|
| 143 |
of up to complexity 3 (e.g., 5.0 + x2) in each side, and cosine can only operate on
|
| 144 |
+
expressions of complexity 5 (e.g., 5.0 + x2 exp(x3)).
|
| 145 |
|
| 146 |
## LaTeX, SymPy, callables
|
| 147 |
|