Jack Monas
commited on
Commit
·
87bb912
1
Parent(s):
b281d64
rules
Browse files
app.py
CHANGED
@@ -14,17 +14,38 @@ def scoring_section():
|
|
14 |
|
15 |
# Points Breakdown in a table
|
16 |
st.markdown("#### Points Breakdown")
|
17 |
-
|
18 |
-
|
19 |
-
| Challenge | 1st Place | 2nd Place | 3rd Place |
|
20 |
-
|-------------|----------:|----------:|----------:|
|
21 |
-
| **Compression** | 10 | 7 | 5 |
|
22 |
-
| **Sampling** | 10 | 7 | 5 |
|
23 |
-
| **Evaluation** | 20 | 14 | 10 |
|
24 |
-
""",
|
25 |
-
unsafe_allow_html=True
|
26 |
-
)
|
27 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
# Tie-Breakers in an expander for a cleaner layout
|
29 |
with st.expander("Tie-Breakers"):
|
30 |
st.write(
|
|
|
14 |
|
15 |
# Points Breakdown in a table
|
16 |
st.markdown("#### Points Breakdown")
|
17 |
+
# Create three columns for a more interesting layout
|
18 |
+
col1, col2, col3 = st.columns(3)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
|
20 |
+
with col1:
|
21 |
+
st.markdown("### Compression Challenge")
|
22 |
+
st.markdown(
|
23 |
+
"""
|
24 |
+
- **1st Place**: 10 points
|
25 |
+
- **2nd Place**: 7 points
|
26 |
+
- **3rd Place**: 5 points
|
27 |
+
"""
|
28 |
+
)
|
29 |
+
|
30 |
+
with col2:
|
31 |
+
st.markdown("### Sampling Challenge")
|
32 |
+
st.markdown(
|
33 |
+
"""
|
34 |
+
- **1st Place**: 10 points
|
35 |
+
- **2nd Place**: 7 points
|
36 |
+
- **3rd Place**: 5 points
|
37 |
+
"""
|
38 |
+
)
|
39 |
+
|
40 |
+
with col3:
|
41 |
+
st.markdown("### Evaluation Challenge")
|
42 |
+
st.markdown(
|
43 |
+
"""
|
44 |
+
- **1st Place**: 20 points
|
45 |
+
- **2nd Place**: 14 points
|
46 |
+
- **3rd Place**: 10 points
|
47 |
+
"""
|
48 |
+
)
|
49 |
# Tie-Breakers in an expander for a cleaner layout
|
50 |
with st.expander("Tie-Breakers"):
|
51 |
st.write(
|