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 * Update filepath * fix(check_missing.py): Fix criterion for max trials (#150) For MF, max trials can be a mu above integer value specified because of the partial trials. Fix the condition. * Fix HEBO integration (#149) * fix(hebo): Do not increase trial_counter twice Must have been forgotton 😭💀 * Update CHANGELOG.md * Update CHANGELOG.md * Update version number 0.1.0->0.1.1 * Feat/plotting (#152) * refactor(plotting): rm old notebooks * refactor: update plotting of subselections * Fix/dist (#153) * Remove dependencies * fix(plotting): small fixes * Update CHANGELOG.md --------- Co-authored-by: Sarah Krebs <[email protected]> Co-authored-by: Helena Graf <[email protected]> Co-authored-by: Sarah Segel <[email protected]> Co-authored-by: Difan Deng <[email protected]>
- Loading branch information
1 parent
f5f8b95
commit 7c3d2ad
Showing
12 changed files
with
2,548 additions
and
2,425 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 |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
|
||
## Bug Fixes | ||
- Fix HEBO integration (#149) | ||
- Fix plotting and data gathering | ||
|
||
# v0.1.0 | ||
|
||
|
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,36 @@ | ||
from __future__ import annotations | ||
import pandas as pd | ||
from carps.analysis.gather_data import load_set, convert_mixed_types_to_str | ||
|
||
def concat_rundata(): | ||
paths = { | ||
"BBsubset": { | ||
"dev": ["runs_subset_BB/dev"], | ||
"test": ["runs_subset_BB/test"], | ||
}, | ||
"MFsubset": { | ||
"dev": ["runs_subset_MF/dev"], | ||
"test": ["runs_subset_MF/test"], | ||
}, | ||
"MOsubset": { | ||
"dev": ["runs_subset_MO/dev"], | ||
"test": ["runs_subset_MO/test"], | ||
}, | ||
"MOMFsubset": { | ||
"dev": ["runs_subset_MOMF/dev"], | ||
"test": ["runs_subset_MOMF/test"], | ||
}, | ||
} | ||
|
||
args = [] | ||
for item in paths.values(): | ||
for k,v in item.items(): | ||
from pathlib import Path | ||
args.append((v,k)) | ||
res = [load_set(paths=a[0], set_id=a[1]) for a in args] | ||
df = pd.concat([r[0] for r in res]).reset_index(drop=True) | ||
df = convert_mixed_types_to_str(df) | ||
df.to_parquet("rundata.parquet") | ||
|
||
if __name__ == "__main__": | ||
concat_rundata() |
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
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
Oops, something went wrong.