We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 257648a commit 13eaa0dCopy full SHA for 13eaa0d
deepcave/plugins/summary/overview.py
@@ -163,6 +163,11 @@ def load_outputs(run, *_: Any) -> List[Any]: # type: ignore
163
),
164
)
165
166
+ if isinstance(run, Group):
167
+ runtime_str = "Maximum runtime"
168
+ else:
169
+ runtime_str = "Total runtime"
170
+
171
# Design card for quick information here
172
card = dbc.Card(
173
[
@@ -181,7 +186,7 @@ def load_outputs(run, *_: Any) -> List[Any]: # type: ignore
181
186
html.Div(
182
187
183
188
html.Span(
184
- f"Total runtime [s]: "
189
+ f"{runtime_str} [s]: "
185
190
f"{max(trial.end_time for trial in run.history)}"
191
192
],
0 commit comments