Spaces:
				
			
			
	
			
			
					
		Running
		
	
	
	
			
			
	
	
	
	
		
		
					
		Running
		
	trying something
Browse files
    	
        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 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 gr.Markdown(f'<a href="{base_url}" target="_blank">{model}</a>')
         
     | 
| 46 | 
         | 
| 47 | 
         
             
            leaderboard_df["Model"] = leaderboard_df["Model"].apply(hyperlink_model)
         
     | 
| 48 | 
         |