fix: duplicate model names test in pipeline coder & runner (#763)

* add model name duplicate test in pipeline costeer

* fix ci
This commit is contained in:
XianBW
2025-04-07 19:06:42 +08:00
committed by GitHub
parent 4c5020f67e
commit e7f3cf97ec
3 changed files with 16 additions and 8 deletions
+2 -2
View File
@@ -435,8 +435,8 @@ def summarize_data():
df.loc[loop, "End Time (UTC+8)"] = state.times[loop][-1].end + timedelta(hours=8)
if "running" in loop_data and "no_tag" in loop_data["running"]:
try:
df.loc[loop, "Running Score (valid)"] = round(
loop_data["running"]["no_tag"].result.loc["ensemble"].iloc[0], 5
df.loc[loop, "Running Score (valid)"] = str(
round(loop_data["running"]["no_tag"].result.loc["ensemble"].iloc[0], 5)
)
except:
df.loc[loop, "Running Score (valid)"] = ""