Spaces:
Sleeping
Sleeping
Re-format README with single heading level
Browse files
README.md
CHANGED
|
@@ -23,7 +23,7 @@ but with additional algorithmic changes such as simulated
|
|
| 23 |
annealing, and classical optimization of constants.
|
| 24 |
|
| 25 |
|
| 26 |
-
|
| 27 |
|
| 28 |
Install Julia - see [downloads](https://julialang.org/downloads/), and
|
| 29 |
then instructions for [mac](https://julialang.org/downloads/platform/#macos)
|
|
@@ -40,9 +40,7 @@ You can install this package from PyPI with:
|
|
| 40 |
pip install pysr
|
| 41 |
```
|
| 42 |
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
### Quickstart
|
| 46 |
|
| 47 |
```python
|
| 48 |
import numpy as np
|
|
@@ -71,7 +69,7 @@ which gives:
|
|
| 71 |
2 11 0.000000 plus(plus(mult(x0, x0), cos(x3)), plus(-2.0, cos(x3)))
|
| 72 |
```
|
| 73 |
|
| 74 |
-
|
| 75 |
|
| 76 |
All Base julia operators that take 1 or 2 float32 as input,
|
| 77 |
and output a float32 as output, are available. A selection
|
|
@@ -115,7 +113,7 @@ name as a string.
|
|
| 115 |
`round`,
|
| 116 |
`sign`.
|
| 117 |
|
| 118 |
-
|
| 119 |
|
| 120 |
What follows is the API reference for running the numpy interface.
|
| 121 |
You likely don't need to tune the hyperparameters yourself,
|
|
|
|
| 23 |
annealing, and classical optimization of constants.
|
| 24 |
|
| 25 |
|
| 26 |
+
# Installation
|
| 27 |
|
| 28 |
Install Julia - see [downloads](https://julialang.org/downloads/), and
|
| 29 |
then instructions for [mac](https://julialang.org/downloads/platform/#macos)
|
|
|
|
| 40 |
pip install pysr
|
| 41 |
```
|
| 42 |
|
| 43 |
+
# Quickstart
|
|
|
|
|
|
|
| 44 |
|
| 45 |
```python
|
| 46 |
import numpy as np
|
|
|
|
| 69 |
2 11 0.000000 plus(plus(mult(x0, x0), cos(x3)), plus(-2.0, cos(x3)))
|
| 70 |
```
|
| 71 |
|
| 72 |
+
# Operators
|
| 73 |
|
| 74 |
All Base julia operators that take 1 or 2 float32 as input,
|
| 75 |
and output a float32 as output, are available. A selection
|
|
|
|
| 113 |
`round`,
|
| 114 |
`sign`.
|
| 115 |
|
| 116 |
+
# Full API
|
| 117 |
|
| 118 |
What follows is the API reference for running the numpy interface.
|
| 119 |
You likely don't need to tune the hyperparameters yourself,
|