You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Launch the evolution controller (create a fresh experiment)
27
27
28
-
```python
29
-
python scripts/run_example.py
28
+
```bash
29
+
python scripts/run_example.py --experiment my_exp
30
30
```
31
31
32
32
Monitor the evolution process in real‑time using the optional Streamlit dashboard:
@@ -37,6 +37,16 @@ $ streamlit run scripts/dashboard.py
37
37
38
38
The dashboard uses Streamlit to visualize the evolution process and back‑test results.
39
39
40
+
### Managing experiments
41
+
42
+
Use the `--experiment` option to keep runs separate:
43
+
44
+
```bash
45
+
python scripts/run_example.py --experiment my_exp
46
+
```
47
+
48
+
This creates a new SQLite file `my_exp.db` under `~/.alphaevolve/`. The dashboard lists all experiments, allowing you to switch between them or delete one via the **Delete experiment** sidebar button.
49
+
40
50
---
41
51
42
52
## ⚙️ Installation
@@ -87,7 +97,7 @@ export LOCAL_MODEL_PATH=~/.cache/phi-2 # or set LOCAL_MODEL_NAME
0 commit comments