add url
Browse files
app.py
CHANGED
@@ -72,7 +72,7 @@ def prep_leaderboard_df():
|
|
72 |
df.insert(0, "Model", [map_model_name(idx) for idx in df.index])
|
73 |
df.insert(1, "Model Type", [map_model_type(idx) for idx in df.index])
|
74 |
# 对 Model 列应用函数,将模型名称转换为链接形式
|
75 |
-
|
76 |
df = df.round(2)
|
77 |
return df
|
78 |
|
|
|
72 |
df.insert(0, "Model", [map_model_name(idx) for idx in df.index])
|
73 |
df.insert(1, "Model Type", [map_model_type(idx) for idx in df.index])
|
74 |
# 对 Model 列应用函数,将模型名称转换为链接形式
|
75 |
+
df['Model'] = df['Model'].apply(make_clickable_model)
|
76 |
df = df.round(2)
|
77 |
return df
|
78 |
|