-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added latest data archive submission also to webpage,
added list of algorithms for each year on performance comparison pages for bbob (update) and bbob-biobj (new)
- Loading branch information
Showing
4 changed files
with
75 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
--- | ||
title: Performance Visualizations for the `bbob-biobj` test suite | ||
--- | ||
|
||
Below, we provide postprocessed data showing the performance of all [30+ officially supported algorithm data sets](../../../../data-archive/bbob-biobj.html) for the `bbob-biobj` test suite. | ||
|
||
Due to the large amount of algorithms (and the limited space in the figures), we currently group algorithm data sets by year of publication. | ||
|
||
|
||
## Performance Comparisons per Year | ||
|
||
```{python} | ||
#| echo: false | ||
#| output: asis | ||
import re | ||
import sys | ||
sys.path.insert(1, '../../scripts/') | ||
from IPython.display import Markdown | ||
import cocopp | ||
for year in range(2016, 2030): | ||
dd = cocopp.bbob_biobj.find(str(year)) | ||
if len(dd) > 1: | ||
dda = [(re.search('/(.*)', d.partition('_')[0]).group(1)) for d in dd] | ||
display(Markdown("\n- [{0}](https://numbbo.github.io/ppdata-archive/bbob-biobj/{0}/index.html):".format(year))) | ||
display(Markdown("{0}".format(', '.join(dda)))) | ||
``` | ||
|
||
|
||
|
||
## Example code to produce the figures | ||
|
||
The Python code to locally generate the second entry, 2019, | ||
above (other entries work respectively) reads | ||
|
||
```python | ||
import cocopp # see https://pypi.org/project/cocopp | ||
cocopp.genericsettings.background = {None: cocopp.archives.bbob_biobj.get_all('2016')} | ||
cocopp.main('bbob-biobj/2019/*') # will take several minutes to process | ||
|
||
``` | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters