Jack Monas
commited on
Commit
·
ad71e5b
1
Parent(s):
4b8fcf8
rules
Browse files
app.py
CHANGED
|
@@ -8,8 +8,8 @@ def scoring_section():
|
|
| 8 |
|
| 9 |
# Intro text
|
| 10 |
st.write(
|
| 11 |
-
"Our scoring system rewards strong performance
|
| 12 |
-
"
|
| 13 |
)
|
| 14 |
|
| 15 |
# Points Breakdown in a table
|
|
@@ -106,10 +106,12 @@ def scoring_section():
|
|
| 106 |
("background-color", "#FFFFFF"),
|
| 107 |
]
|
| 108 |
}
|
| 109 |
-
])
|
|
|
|
|
|
|
|
|
|
|
|
|
| 110 |
|
| 111 |
-
# Display the styled DataFrame as HTML
|
| 112 |
-
st.write(styled_df.to_html(), unsafe_allow_html=True)
|
| 113 |
|
| 114 |
def main():
|
| 115 |
st.set_page_config(page_title="World Model Challenge")
|
|
|
|
| 8 |
|
| 9 |
# Intro text
|
| 10 |
st.write(
|
| 11 |
+
"Our scoring system rewards strong performance in all three challenges, with extra emphasis on the Evaluation Challenge. "
|
| 12 |
+
"A team's final rank is determined by the total points they earn across the Compression, Sampling, and Evaluation challenges."
|
| 13 |
)
|
| 14 |
|
| 15 |
# Points Breakdown in a table
|
|
|
|
| 106 |
("background-color", "#FFFFFF"),
|
| 107 |
]
|
| 108 |
}
|
| 109 |
+
])
|
| 110 |
+
|
| 111 |
+
# Convert to HTML without including the index
|
| 112 |
+
st.write(styled_df.to_html(index=False), unsafe_allow_html=True)
|
| 113 |
+
|
| 114 |
|
|
|
|
|
|
|
| 115 |
|
| 116 |
def main():
|
| 117 |
st.set_page_config(page_title="World Model Challenge")
|