Jack Monas commited on
Commit
c9df33b
·
1 Parent(s): f28037a
Files changed (1) hide show
  1. app.py +6 -7
app.py CHANGED
@@ -4,7 +4,7 @@ import pandas as pd
4
 
5
 
6
  def scoring_layout():
7
- st.markdown("## Scoring")
8
  st.write(
9
  "Our scoring system rewards strong performance across all challenges, with extra weight "
10
  "given to the Evaluation Challenge. The breakdown is as follows:"
@@ -14,7 +14,7 @@ def scoring_layout():
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,7 +24,7 @@ def scoring_layout():
24
  )
25
 
26
  with col2:
27
- st.markdown("## Sampling")
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")
38
  st.markdown(
39
  """
40
  - **1st Place**: 20 points
@@ -43,7 +43,7 @@ def scoring_layout():
43
  """
44
  )
45
 
46
- st.markdown("## Tie-Breakers")
47
  st.write(
48
  "The overall winner will be the team with the highest total points. "
49
  "In the event of a tie, the following tie-breakers will be applied in order:\n\n"
@@ -61,7 +61,6 @@ def main():
61
  "Welcome to the World Model Challenge server. This platform hosts three challenges "
62
  "designed to advance research in world models for robotics: Compression, Sampling, and Evaluation."
63
  )
64
- st.markdown("---")
65
 
66
  st.markdown("### Motivation")
67
  st.write(
@@ -92,7 +91,7 @@ def main():
92
 
93
  scoring_layout()
94
 
95
- st.markdown("## Overall Leaderboard")
96
  st.write(
97
  "The overall leaderboard, which shows the total points across all challenges, will go live on March 10th. "
98
  "In addition, each challenge—Compression, Sampling, and Evaluation—will have its own leaderboard on their respective Hugging Face submission servers. "
 
4
 
5
 
6
  def scoring_layout():
7
+ st.markdown("### Scoring")
8
  st.write(
9
  "Our scoring system rewards strong performance across all challenges, with extra weight "
10
  "given to the Evaluation Challenge. The breakdown is as follows:"
 
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
 
43
  """
44
  )
45
 
46
+ st.markdown("#### Tie-Breakers")
47
  st.write(
48
  "The overall winner will be the team with the highest total points. "
49
  "In the event of a tie, the following tie-breakers will be applied in order:\n\n"
 
61
  "Welcome to the World Model Challenge server. This platform hosts three challenges "
62
  "designed to advance research in world models for robotics: Compression, Sampling, and Evaluation."
63
  )
 
64
 
65
  st.markdown("### Motivation")
66
  st.write(
 
91
 
92
  scoring_layout()
93
 
94
+ st.markdown("#### Overall Leaderboard")
95
  st.write(
96
  "The overall leaderboard, which shows the total points across all challenges, will go live on March 10th. "
97
  "In addition, each challenge—Compression, Sampling, and Evaluation—will have its own leaderboard on their respective Hugging Face submission servers. "