陈俊杰
commited on
Commit
•
819591b
1
Parent(s):
b4af3db
cjj-leaderboard
Browse files
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]
|
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 = {
|