mirror of
https://github.com/NicolasBohn/NexQuant.git
synced 2026-07-28 16:07:46 +00:00
fix: trace summary df showing in dsapp (#551)
* fix trace summary df show * fix ci
This commit is contained in:
@@ -243,6 +243,12 @@ def summarize_data():
|
||||
except Exception as e:
|
||||
state.data[loop]["mle_score"] = str(e)
|
||||
df.loc[loop, "Running Score"] = "❌"
|
||||
else:
|
||||
if isinstance(state.data[loop]["mle_score"], dict):
|
||||
df.loc[loop, "Running Score"] = str(state.data[loop]["mle_score"]["score"])
|
||||
else:
|
||||
df.loc[loop, "Running Score"] = "❌"
|
||||
|
||||
else:
|
||||
df.loc[loop, "Running Score"] = "N/A"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user