abiswal commited on
Commit
7fb3cda
·
1 Parent(s): cbfcc33

trying something

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -42,7 +42,7 @@ leaderboard_df = leaderboard_df.drop(columns=["Execution Accuracy (numeric)"])
42
  # Add hyperlinks to the Model column
43
  def hyperlink_model(model):
44
  base_url = "https://github.com/TAG-Research/TAG-Bench/tree/main"
45
- return gr.Markdown(f'<a href="{base_url}" target="_blank">{model}</a>')
46
 
47
  leaderboard_df["Model"] = leaderboard_df["Model"].apply(hyperlink_model)
48
 
 
42
  # Add hyperlinks to the Model column
43
  def hyperlink_model(model):
44
  base_url = "https://github.com/TAG-Research/TAG-Bench/tree/main"
45
+ return f'<a href="{base_url}" target="_blank">{model}</a>'
46
 
47
  leaderboard_df["Model"] = leaderboard_df["Model"].apply(hyperlink_model)
48