MilesCranmer commited on
Commit
4383c36
1 Parent(s): bd436f3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -135,8 +135,8 @@ This arrow in the `pick` column indicates which equation is currently selected b
135
 
136
  `model.equations` is a pandas DataFrame containing all equations, including callable format
137
  (`lambda_format`),
138
- SymPy format (`sympy_format`), and even JAX and PyTorch format
139
- (both of which are differentiable).
140
 
141
  Note that `PySRRegressor` stores the state of the last search, and will restart from where you left off the next time you call `.fit()`. This will cause problems if significant changes are made to the search parameters (like changing the operators). You can run `model.reset()` to reset the state.
142
 
 
135
 
136
  `model.equations` is a pandas DataFrame containing all equations, including callable format
137
  (`lambda_format`),
138
+ SymPy format (`sympy_format` - which you can also get with `model.sympy()`), and even JAX and PyTorch format
139
+ (both of which are differentiable - which you can get with `model.jax()` and `model.pytorch()`).
140
 
141
  Note that `PySRRegressor` stores the state of the last search, and will restart from where you left off the next time you call `.fit()`. This will cause problems if significant changes are made to the search parameters (like changing the operators). You can run `model.reset()` to reset the state.
142