mgyigit commited on
Commit
0dbeb1c
1 Parent(s): 11d1b83

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -121,6 +121,7 @@ with block:
121
 
122
  # Display the filtered leaderboard
123
  baseline_value = get_baseline_df(method_names, metric_names)
 
124
  baseline_header = ["Method"] + metric_names
125
  baseline_datatype = ['markdown'] + ['number'] * len(metric_names)
126
 
 
121
 
122
  # Display the filtered leaderboard
123
  baseline_value = get_baseline_df(method_names, metric_names)
124
+ baseline_value = baseline_value.round(4) # Round all numeric columns to 4 decimal places
125
  baseline_header = ["Method"] + metric_names
126
  baseline_datatype = ['markdown'] + ['number'] * len(metric_names)
127