Skip to content

Commit

Permalink
Merge pull request #165 from automl/feature/pandas-converter
Browse files Browse the repository at this point in the history
Feature/pandas converter
  • Loading branch information
sarah-segel authored Aug 20, 2024
2 parents 925b4fa + 9806e48 commit 48ef545
Show file tree
Hide file tree
Showing 20 changed files with 843 additions and 34 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Converters
- Add support for AMLTK.
- Add support for Optuna.
- Add support for adding a run in DataFrame format (#137).
- BOHB: Consider missing state as valid state as state is not provided by default (#65).

## Version-Updates
Expand Down
3 changes: 2 additions & 1 deletion deepcave/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,9 +139,10 @@ def CONVERTERS(self) -> List[Type["Run"]]:
"""Get a list of available run converters."""
from deepcave.runs.converters.amltk import AMLTKRun
from deepcave.runs.converters.bohb import BOHBRun
from deepcave.runs.converters.dataframe import DataFrameRun
from deepcave.runs.converters.deepcave import DeepCAVERun
from deepcave.runs.converters.optuna import OptunaRun
from deepcave.runs.converters.smac3v1 import SMAC3v1Run
from deepcave.runs.converters.smac3v2 import SMAC3v2Run

return [AMLTKRun, BOHBRun, DeepCAVERun, OptunaRun, SMAC3v1Run, SMAC3v2Run]
return [AMLTKRun, BOHBRun, DeepCAVERun, OptunaRun, SMAC3v1Run, SMAC3v2Run, DataFrameRun]
2 changes: 1 addition & 1 deletion deepcave/plugins/hyperparameter/pdp.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"""
# PartialDependencies
This module provides utilities for generating Partial Dependency Plots (PDP).
This module provides utilities for generating Partial Dependency Plots (PDPs).
Provided utilities include getting input and output layout (filtered or non-filtered),
processing the data and loading the outputs.
Expand Down
Loading

0 comments on commit 48ef545

Please sign in to comment.