Skip to content

Commit 65ec7ff

Browse files
committed
Merge branch 'development' of github.com:automl/CARP-S into development
2 parents 852428c + af77e75 commit 65ec7ff

26 files changed

Lines changed: 1028 additions & 280 deletions

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,4 +177,6 @@ tmp*
177177
*output*
178178

179179
container/python_packages/*
180-
slurmlogs/*
180+
slurmlogs/*
181+
182+
*.tar.gz

AUTHORS.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,7 @@
33

44
## Development
55

6-
- Carolin Benjamins (Lead)
7-
- Helena Graf
8-
- Sarah Segel
9-
- Difan Deng
10-
- Tim Ruhkopf
11-
- Leona Hennig
12-
- Soham Basu
13-
- Edward Bergman
6+
tba
147

158
## Contributors
169

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# v1.0.3
2+
- Fix the order of optimizer names in the critical difference plots (#196).
3+
4+
# v1.0.2
5+
- Fix duplicate trial_counter in SyneTune (#193).
6+
- Refactor plotting (#193,#194).
7+
- Extend TrialInfo, logging utilities, and missing-run detection with extra fields and environment dumps (#193).
8+
- Refactor experimenter configs, database schemas, and analysis pipeline for nested task keys
9+
and hypervolume support (#193).
10+
11+
112
# v1.0.1
213
- Fix installation via pypi (#185).
314
- Update docs (#186).

CITATION.cff

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,12 @@ url: "https://automl.github.io/CARP-S/main/"
1010

1111
repository-code: "https://github.com/automl/CARP-S"
1212

13-
version: "1.0.1"
13+
version: "1.0.3"
1414

1515
type: "template"
1616
keywords:
1717
- "template"
1818

1919
<<requires::license license: "BSD license" endrequires::license>>
2020

21-
authors:
22-
- family-names: "Benjamins"
23-
given-names: "Carolin"
24-
affiliation: "Leibniz University Hannover, Germany"
25-
- family-names: "Graf"
26-
given-names: "Helena"
27-
affiliation: "Leibniz University Hannover, Germany"
2821
...

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ recursive-exclude env* *
2222
recursive-exclude carps.egg* *
2323
recursive-exclude carps/benchmark_data *
2424
recursive-exclude carps/task_data *
25+
recursive-exclude * *.sif
2526

2627
recursive-include docs *.rst make.bat *.jpg *.png *.gif
2728
recursive-include carps/configs *

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ Information is also available [here](https://automl.github.io/CARP-S/guides/usin
187187

188188
## Evaluation Results
189189
For each task_type (blackbox, multi-fidelity, multi-objective and multi-fidelity-multi-objective) and set (dev and test), we run selected optimizers and provide the data.
190-
Here we provide the link to the [meta data](https://drive.google.com/file/d/17pn48ragmWsyRC39sInsh2fEPUHP3BRT/view?usp=sharing)
190+
Here we provide the link to the [meta data](https://drive.google.com/file/d/1Z9qcJDUb2jrZeC1qcgc4ByNUKAtOw6dX/view?usp=sharing)
191191
that contains the detailed optimization setting for each run
192-
and the [running results](https://drive.google.com/file/d/1yzJRbwRvdLbpZ9SdQN2Vk3yQSdDP_vck/view?usp=drive_link) that
192+
and the [running results](https://drive.google.com/file/d/1Ai-pM_LlsQ0E4EAfkeujtu6iwvhozhda/view?usp=sharing) that
193193
records the running results of each optimization-benchmark combination.

carps/__init__.py

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +0,0 @@
1-
import datetime
2-
3-
name = "CARP-S"
4-
package_name = "carps"
5-
author = "AutoML"
6-
author_email = "smac@ai.uni-hannover.de"
7-
description = "Benchmark SMAC"
8-
url = "https://www.automl.org"
9-
project_urls = {
10-
"Documentation": "https://AutoML.github.io/SMACBenchmarking/main",
11-
"Source Code": "https://github.com/AutoML/carps",
12-
}
13-
copyright = f"Copyright {datetime.date.today().strftime('%Y')}, AutoML" # noqa: A001
14-
version = "0.0.1"

0 commit comments

Comments
 (0)