-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/symbolic explanations #101
Changes from all commits
35eea9b
aded257
252ea68
a510db8
e7db918
b1a5a97
72df8cd
6a47a7f
60580c5
4f2636e
803cfc3
cd5b1c5
1da5915
d56b82f
1e75d3c
87b02bd
205f672
95473b6
d8bb6a7
77e2246
7777934
b3723aa
933a137
b62462e
4252994
e7b2e9c
ab0164a
208ebfa
04b660a
da987e8
bc8bfd4
d4101f6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,15 +9,15 @@ | |
name = "DeepCAVE" | ||
package_name = "deepcave" | ||
author = "R. Sass and E. Bergman and A. Biedenkapp and F. Hutter and M. Lindauer" | ||
author_email = "sass@tnt.uni-hannover.de" | ||
author_email = "s.segel@ai.uni-hannover.de" | ||
description = "An interactive framework to visualize and analyze your AutoML process in real-time." | ||
url = "automl.org" | ||
project_urls = { | ||
"Documentation": "https://automl.github.io/DeepCAVE/main", | ||
"Source Code": "https://github.com/automl/deepcave", | ||
} | ||
copyright = f"Copyright {datetime.date.today().strftime('%Y')}, {author}" | ||
version = "1.1.3" | ||
version = "1.2" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same as the previous comment about inconsistent versions There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same as above. |
||
|
||
_exec_file = sys.argv[0] | ||
_exec_files = ["server.py", "worker.py", "sphinx-build"] | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
class Config: | ||
# General config | ||
TITLE: str = "DeepCAVE" | ||
DEBUG: bool = True | ||
DEBUG: bool = False | ||
# How often to refresh background activities (such as update the sidebar or process button for | ||
# static plugins). Value in milliseconds. | ||
REFRESH_RATE: int = 500 | ||
|
@@ -49,6 +49,9 @@ def PLUGINS(self) -> Dict[str, List["Plugin"]]: | |
from deepcave.plugins.budget.budget_correlation import BudgetCorrelation | ||
from deepcave.plugins.hyperparameter.importances import Importances | ||
from deepcave.plugins.hyperparameter.pdp import PartialDependencies | ||
from deepcave.plugins.hyperparameter.symbolic_explanations import ( | ||
SymbolicExplanations, | ||
) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why the brackets? :) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not sure how they got there, removed :) |
||
from deepcave.plugins.objective.configuration_cube import ConfigurationCube | ||
from deepcave.plugins.objective.cost_over_time import CostOverTime | ||
from deepcave.plugins.objective.parallel_coordinates import ParallelCoordinates | ||
|
@@ -75,6 +78,7 @@ def PLUGINS(self) -> Dict[str, List["Plugin"]]: | |
"Hyperparameter Analysis": [ | ||
Importances(), | ||
PartialDependencies(), | ||
SymbolicExplanations(), | ||
], | ||
} | ||
return plugins | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This says version 1.2, but in the Changelog the change is under Version 1.1.4
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Edited to 1.2 in Changelog.