We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1678461 commit b092c24Copy full SHA for b092c24
rdagent/log/ui/dsapp.py
@@ -243,6 +243,12 @@ def summarize_data():
243
except Exception as e:
244
state.data[loop]["mle_score"] = str(e)
245
df.loc[loop, "Running Score"] = "❌"
246
+ else:
247
+ if isinstance(state.data[loop]["mle_score"], dict):
248
+ df.loc[loop, "Running Score"] = str(state.data[loop]["mle_score"]["score"])
249
250
+ df.loc[loop, "Running Score"] = "❌"
251
+
252
else:
253
df.loc[loop, "Running Score"] = "N/A"
254
0 commit comments