Skip to content

Commit cb4468d

Browse files
committed
readme: added multi1d example solved with EGO + qEI
1 parent fc0a08a commit cb4468d

3 files changed

Lines changed: 36 additions & 0 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ spk --train <json_file>
4242
| `parabola` | 2 | Classic parabola (solved with `PBO`) | <img width="300" alt="gif" src="sparkle/msc/parabola_pbo.gif"> |
4343
| `rosenbrock` | 2 | Rosenbrock function (solved with `CMAES`) | <img width="300" alt="gif" src="sparkle/msc/rosenbrock_cmaes.gif"> |
4444
| `multi1d` | 1 | Multi1D function (solved with `EGO`) | <img width="300" alt="gif" src="sparkle/msc/multi1d_ego.gif"> |
45+
| `qEI` | 2 | Multi1D function with parallel sampling (solved with `EGO` + `qEI`) | <img width="300" alt="gif" src="sparkle/msc/multi1d_ego_qei.gif"> |
4546
| `constraint` | 2 | Parabola with a priori constraints on parameters (solved with `CMAES`) | <img width="300" alt="gif" src="sparkle/msc/constraint_cmaes.gif"> |
4647

4748
## Physics-based environments

sparkle/env/multi1d/ego_qei.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"n_avg": 1,
3+
"avg_type": "linear",
4+
"naming": {
5+
"env": true,
6+
"agent": true,
7+
"tag": false,
8+
"time": false
9+
},
10+
"trainer": {
11+
"name": "metamodel",
12+
"render_every": 1,
13+
"renderer": "trainer",
14+
"environment": {
15+
"name": "multi1d"
16+
},
17+
"pex": {
18+
"name": "minrfps",
19+
"n_points": 2
20+
},
21+
"model": {
22+
"name": "kriging",
23+
"optimize_every": 10,
24+
"kernel": {
25+
"name": "matern52"
26+
}
27+
},
28+
"agent": {
29+
"name": "ego",
30+
"n_points": 2,
31+
"n_steps_max": 20,
32+
"infill": "q_ei"
33+
}
34+
}
35+
}

sparkle/msc/multi1d_ego_qei.gif

341 KB
Loading

0 commit comments

Comments
 (0)