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 24aec11 commit c3fa245Copy full SHA for c3fa245
rdagent/log/ui/app.py
@@ -518,6 +518,11 @@ def research_window():
518
# loaded model exp
519
with c2:
520
if mem := state.msgs[round]["d.load_experiment"]:
521
+ # 'load_experiment' should in 'r' now, but old version trace may in 'd', so we need to check both
522
+ # TODO: modify the way to get one message with a specific tag like 'load_experiment' in the future
523
+ me: QlibModelExperiment = mem[0].content
524
+ tasks_window(me.sub_tasks)
525
+ elif mem := state.msgs[round]["r.load_experiment"]:
526
me: QlibModelExperiment = mem[0].content
527
tasks_window(me.sub_tasks)
528
0 commit comments