xeon27 commited on
Commit
f00efbc
·
1 Parent(s): bb10943

Set column width

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -96,6 +96,7 @@ def init_leaderboard(dataframe, benchmark_type):
96
  return gr.components.Dataframe(
97
  value=dataframe,
98
  datatype=[c.type for c in AutoEvalColumnSubset],
 
99
  )
100
 
101
 
 
96
  return gr.components.Dataframe(
97
  value=dataframe,
98
  datatype=[c.type for c in AutoEvalColumnSubset],
99
+ column_widths=["100px" for c in AutoEvalColumnSubset],
100
  )
101
 
102