Jack Monas commited on
Commit
d01834d
·
1 Parent(s): c2e844a
Files changed (1) hide show
  1. app.py +8 -4
app.py CHANGED
@@ -14,7 +14,7 @@ def scoring_layout():
14
  col1, col2, col3 = st.columns(3)
15
 
16
  with col1:
17
- st.markdown("### Compression Challenge")
18
  st.markdown(
19
  """
20
  - **1st Place**: 10 points
@@ -24,7 +24,7 @@ def scoring_layout():
24
  )
25
 
26
  with col2:
27
- st.markdown("### Sampling Challenge")
28
  st.markdown(
29
  """
30
  - **1st Place**: 10 points
@@ -34,7 +34,7 @@ def scoring_layout():
34
  )
35
 
36
  with col3:
37
- st.markdown("### Evaluation Challenge")
38
  st.markdown(
39
  """
40
  - **1st Place**: 20 points
@@ -88,8 +88,12 @@ def main():
88
  "The Evaluation Challenge tackles the ultimate question: Can you predict a robot's performance in the real world without physically deploying it? In this challenge, you will be provided with many different policies for a specific task. Your task is to rank these policies according to their expected real-world performance. This ranking will be compared with the actual ranking of the policies."
89
  )
90
  scoring_layout()
 
 
91
  st.write(
92
- "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:"
 
 
93
  )
94
 
95
  # Sample leaderboard data as a preview
 
14
  col1, col2, col3 = st.columns(3)
15
 
16
  with col1:
17
+ st.markdown("### Compression")
18
  st.markdown(
19
  """
20
  - **1st Place**: 10 points
 
24
  )
25
 
26
  with col2:
27
+ st.markdown("### Sampling")
28
  st.markdown(
29
  """
30
  - **1st Place**: 10 points
 
34
  )
35
 
36
  with col3:
37
+ st.markdown("### Evaluation")
38
  st.markdown(
39
  """
40
  - **1st Place**: 20 points
 
88
  "The Evaluation Challenge tackles the ultimate question: Can you predict a robot's performance in the real world without physically deploying it? In this challenge, you will be provided with many different policies for a specific task. Your task is to rank these policies according to their expected real-world performance. This ranking will be compared with the actual ranking of the policies."
89
  )
90
  scoring_layout()
91
+
92
+ st.markdown("### Overall Leaderboard")
93
  st.write(
94
+ "The overall leaderboard, which shows the total points across all challenges, will go live on March 10th. "
95
+ "In addition, each challenge—Compression, Sampling, and Evaluation—will have its own leaderboard on their respective Hugging Face submission servers. "
96
+ "Below is a preview of what the overall leaderboard format might look like:"
97
  )
98
 
99
  # Sample leaderboard data as a preview