Dhananjay Ashok commited on
Commit
502bd82
1 Parent(s): 12aa72d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -5
README.md CHANGED
@@ -65,6 +65,13 @@ pip install pysr
65
  ```
66
 
67
  # Quickstart
 
 
 
 
 
 
 
68
  ```python
69
  import numpy as np
70
  from pysr import pysr, best, get_hof
@@ -104,8 +111,3 @@ This is a pandas table, with additional columns:
104
  - `score` - a metric akin to Occam's razor; you should use this to help select the "true" equation.
105
  - `sympy_format` - sympy equation.
106
  - `lambda_format` - a lambda function for that equation, that you can pass values through.
107
-
108
- You can also quick start by navigating to the root directory and simply calling
109
- ```
110
- python main.py
111
- ```
 
65
  ```
66
 
67
  # Quickstart
68
+ For a simple demo, start by navigating to the root directory and then in a terminal call
69
+ ```
70
+ >> python main.py
71
+ ```
72
+ <br>
73
+ For a more hands on demo you can do the following (also in the root directory)
74
+
75
  ```python
76
  import numpy as np
77
  from pysr import pysr, best, get_hof
 
111
  - `score` - a metric akin to Occam's razor; you should use this to help select the "true" equation.
112
  - `sympy_format` - sympy equation.
113
  - `lambda_format` - a lambda function for that equation, that you can pass values through.