Skip to content

Commit 4eacae3

Browse files
author
Sarah Krebs
committed
Minor fixes from PR
1 parent f753273 commit 4eacae3

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

deepcave/evaluators/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
footprint
1010
This module provides utilities for creating a footprint of a run.
1111
lpi
12-
This module provides utilties to calculate the local parameter importance (LPM).
12+
This module provides utilities to calculate the local parameter importance (LPI).
1313
"""

deepcave/plugins/hyperparameter/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,6 @@
88
This module provides a plugin for the visualization of the importances.
99
pdp
1010
This module provides utilities for generating Partial Dependency Plots (PDP).
11+
symbolic_explanations
12+
This module provides utilities for generating symbolic explanations.
1113
"""

deepcave/runs/converters/bohb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def hash(self) -> str:
4747
"""
4848
if self.path is None:
4949
return ""
50-
print(self.path)
50+
5151
# Use hash of results.json as id
5252
return file_to_hash(self.path / "results.json")
5353

deepcave/worker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
# Worker.
33
4-
This module can create an redis queue worker.
4+
This module can create a redis queue worker.
55
"""
66

77
from rq import Connection, Worker

0 commit comments

Comments
 (0)