generated from automl/automl_template
-
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.
* fix: typo * build: update scripts * ignore python * docs: update install instructions * docs: update install instructions * build: fix makefile typo * docs: fix typos * build: updates for hpobench installation * build: updates for hpobench installation * Add logo to README.md + docs; adapt docs theme colors to logo * Actually add the logo file * fix: changelog entry for initial version * add running data to readme (#139) * add running data to readme * Update README.md --------- Co-authored-by: benjamc <[email protected]> * Update plotting --------- Co-authored-by: benjamc <[email protected]> Co-authored-by: Helena Graf <[email protected]> Co-authored-by: Difan Deng <[email protected]>
- Loading branch information
1 parent
652abf4
commit 9f163c2
Showing
18 changed files
with
1,572 additions
and
141 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
# Version 0.0.1 | ||
# Version 0.1.0 | ||
|
||
- Initial version of CARP-S. |
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
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,17 @@ | ||
#!/bin/bash | ||
|
||
CONDA_ENV_NAME=$1 | ||
if [ -z "$CONDA_ENV_NAME" ] | ||
then | ||
CONDA_RUN_COMMAND= | ||
else | ||
CONDA_RUN_COMMAND="${CONDA_COMMAND} run ${CONDA_ENV_NAME}" | ||
fi | ||
$CONDA_RUN_COMMAND pip install git+https://github.com/automl/HPOBench.git --ignore-requires-python | ||
$CONDA_RUN_COMMAND pip install tqdm | ||
$CONDA_RUN_COMMAND pip install pandas==1.2.4 | ||
$CONDA_RUN_COMMAND pip install Cython==0.29.36 | ||
$CONDA_RUN_COMMAND pip install scikit-learn==0.24.2 --no-build-isolation # <- no buil isolation is important | ||
$CONDA_RUN_COMMAND pip install openml==0.12.2 | ||
$CONDA_RUN_COMMAND pip install xgboost==1.3.1 | ||
$CONDA_RUN_COMMAND pip install ConfigSpace #==0.6.1 |
8 changes: 0 additions & 8 deletions
8
container_recipes/benchmarks/HPOBench/install_HPOBench_requirements.sh
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,2 +1,12 @@ | ||
python -m mfpbench download --status --data-dir data | ||
python -m mfpbench download --benchmark pd1 | ||
#!/bin/bash | ||
|
||
CONDA_ENV_NAME=$1 | ||
if [ -z "$CONDA_ENV_NAME" ] | ||
then | ||
CONDA_RUN_COMMAND= | ||
else | ||
CONDA_RUN_COMMAND="${CONDA_COMMAND} run ${CONDA_ENV_NAME}" | ||
fi | ||
|
||
$CONDA_RUN_COMMAND python -m mfpbench download --status --data-dir data | ||
$CONDA_RUN_COMMAND python -m mfpbench download --benchmark pd1 |
Oops, something went wrong.