Skip to content

Commit c00d83a

Browse files
committed
All work as intended
1 parent 9c0fabe commit c00d83a

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

deepcave/plugins/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -750,7 +750,7 @@ def __call__(self, render_button: bool = False) -> List[Component]:
750750
Layout as list of components.
751751
"""
752752
from deepcave import c, notification
753-
print(self.__class__)
753+
754754
# Reset runtime variables
755755
self.previous_inputs = {}
756756
self.raw_outputs = None
@@ -800,7 +800,6 @@ def __call__(self, render_button: bool = False) -> List[Component]:
800800
]
801801
else:
802802
components += [html.H1(self.name)]
803-
804803
try:
805804
self.check_runs_compatibility(self.all_runs)
806805
except NotMergeableError as message:

deepcave/plugins/hyperparameter/pdp.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,7 @@ def load_dependency_inputs(self, run, previous_inputs, inputs):
166166
@staticmethod
167167
def process(run, inputs):
168168
# Surrogate
169+
print("Process PDP has been called.")
169170
hp_names = run.configspace.get_hyperparameter_names()
170171
objective = run.get_objective(inputs["objective_id"])
171172
budget = run.get_budget(inputs["budget_id"])

deepcave/plugins/objective/cost_over_time.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ class CostOverTime(DynamicPlugin):
2525
help = "docs/plugins/cost_over_time.rst"
2626

2727
def check_runs_compatibility(self, runs: List[AbstractRun]) -> None:
28-
print("check_runs_compatibility in CoT has been called.")
2928
try:
3029
check_equality(runs, objectives=True, budgets=True)
3130
except NotMergeableError as e:

0 commit comments

Comments
 (0)