陈俊杰 commited on
Commit
819591b
1 Parent(s): b4af3db

cjj-leaderboard

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -243,7 +243,7 @@ This leaderboard is used to show the performance of the <strong>automatic evalua
243
  for d in data:
244
  if d != ('', 'teamId') and d != ('', 'methods'):
245
  for col in range(len(data[d])):
246
- data[d][col] = data[d][col].apply(lambda x: f"{x:.4f}")
247
  st.dataframe(data, use_container_width=True)
248
  # # teamId 唯一标识码
249
  # DG = {
 
243
  for d in data:
244
  if d != ('', 'teamId') and d != ('', 'methods'):
245
  for col in range(len(data[d])):
246
+ data[d][col] = "{:.4f}".format(data[d][col])
247
  st.dataframe(data, use_container_width=True)
248
  # # teamId 唯一标识码
249
  # DG = {