Jack Monas
commited on
Commit
·
29924b3
1
Parent(s):
0a9f9e7
rules
Browse files
app.py
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
import streamlit as st
|
2 |
-
|
3 |
def main():
|
4 |
st.set_page_config(page_title="World Model Challenge")
|
5 |
|
@@ -55,6 +55,22 @@ def main():
|
|
55 |
"1. Highest Evaluation Challenge score\n"
|
56 |
"2. Highest Sampling Challenge score\n\n"
|
57 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
|
59 |
|
60 |
|
|
|
1 |
import streamlit as st
|
2 |
+
import pandas as pd
|
3 |
def main():
|
4 |
st.set_page_config(page_title="World Model Challenge")
|
5 |
|
|
|
55 |
"1. Highest Evaluation Challenge score\n"
|
56 |
"2. Highest Sampling Challenge score\n\n"
|
57 |
)
|
58 |
+
st.write(
|
59 |
+
"The overall leaderboard, which displays the total points accumulated across all challenges, will be launched on March 10th. Below is a preview of the leaderboard format:"
|
60 |
+
)
|
61 |
+
|
62 |
+
# Sample leaderboard data as a preview
|
63 |
+
data = {
|
64 |
+
"Rank": [1, 2, 3],
|
65 |
+
"Team Name": ["Team Alpha", "Team Beta", "Team Gamma"],
|
66 |
+
"Compression Points": [10, 7, 5],
|
67 |
+
"Sampling Points": [10, 7, 5],
|
68 |
+
"Evaluation Points": [20, 14, 10],
|
69 |
+
"Total Points": [40, 28, 20],
|
70 |
+
}
|
71 |
+
|
72 |
+
leaderboard_df = pd.DataFrame(data)
|
73 |
+
st.table(leaderboard_df)
|
74 |
|
75 |
|
76 |
|