Commit 8c1d7bc
committed
Update the evaluator.py in function_minimization
the old version of code is:
y_std_score = float(1.0 / (1.0 + np.std(x_values))) is not correct
I changed to the
y_std_score = float(1.0 / (1.0 + np.std(y_values)))1 parent e152825 commit 8c1d7bc
1 file changed
Lines changed: 4 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
178 | 178 | | |
179 | 179 | | |
180 | 180 | | |
| 181 | + | |
181 | 182 | | |
182 | | - | |
| 183 | + | |
| 184 | + | |
183 | 185 | | |
184 | 186 | | |
185 | 187 | | |
| |||
341 | 343 | | |
342 | 344 | | |
343 | 345 | | |
344 | | - | |
| 346 | + | |
0 commit comments