Update app.py
Browse files
app.py
CHANGED
@@ -885,15 +885,39 @@ with gr.Blocks(css=css_tech_theme) as demo:
|
|
885 |
)
|
886 |
|
887 |
# Post-Tabs Section
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
888 |
gr.Markdown("""
|
889 |
<section class="post-tabs">
|
890 |
-
<h2
|
891 |
-
<
|
892 |
-
|
893 |
-
|
894 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
895 |
</section>
|
896 |
""")
|
|
|
897 |
|
898 |
with gr.Row():
|
899 |
with gr.Accordion("π Citation", open=False):
|
@@ -911,7 +935,7 @@ with gr.Blocks(css=css_tech_theme) as demo:
|
|
911 |
</p>
|
912 |
<div class="social-links">
|
913 |
<a href="https://website.com" target="_blank" class="social-link">π Website</a>
|
914 |
-
<a href="https://github.com/VILA-Lab/Mobile-MMLU" target="_blank" class="social-link"
|
915 |
</div>
|
916 |
</footer>
|
917 |
""",elem_id="custom-footer")
|
|
|
885 |
)
|
886 |
|
887 |
# Post-Tabs Section
|
888 |
+
# gr.Markdown("""
|
889 |
+
# <section class="post-tabs">
|
890 |
+
# <h2>Ready to Compete?</h2>
|
891 |
+
# <h3>
|
892 |
+
# Submit your predictions today and make your mark in advancing mobile AI technologies.
|
893 |
+
# Show the world what your model can achieve!
|
894 |
+
# <h3>
|
895 |
+
# </section>
|
896 |
+
# """)
|
897 |
+
|
898 |
+
# Post-Tabs Section
|
899 |
gr.Markdown("""
|
900 |
<section class="post-tabs">
|
901 |
+
<h2 style="color: #6a1b9a; text-align: center; font-size: 2.5em; margin-bottom: 15px;">π Ready to Compete? π</h2>
|
902 |
+
<p style="font-size: 1.5em; text-align: center; color: #ffffff; line-height: 1.6; margin-bottom: 20px;">
|
903 |
+
Don't miss this opportunity to showcase your expertise in mobile AI! Participate in the competition,
|
904 |
+
submit your predictions, and compare your results with the best in the field.
|
905 |
+
</p>
|
906 |
+
<div style="display: flex; justify-content: center; gap: 20px; margin-top: 20px;">
|
907 |
+
<a href="#submission" style="text-decoration: none; font-size: 1.2em; font-weight: bold;
|
908 |
+
background: #ffffff; color: #6a1b9a; padding: 15px 30px; border-radius: 30px;
|
909 |
+
transition: all 0.3s ease; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);">
|
910 |
+
Submit Predictions π
|
911 |
+
</a>
|
912 |
+
<a href="#leaderboard" style="text-decoration: none; font-size: 1.2em; font-weight: bold;
|
913 |
+
background: #ffffff; color: #6a1b9a; padding: 15px 30px; border-radius: 30px;
|
914 |
+
transition: all 0.3s ease; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);">
|
915 |
+
View Leaderboard π
|
916 |
+
</a>
|
917 |
+
</div>
|
918 |
</section>
|
919 |
""")
|
920 |
+
|
921 |
|
922 |
with gr.Row():
|
923 |
with gr.Accordion("π Citation", open=False):
|
|
|
935 |
</p>
|
936 |
<div class="social-links">
|
937 |
<a href="https://website.com" target="_blank" class="social-link">π Website</a>
|
938 |
+
<a href="https://github.com/VILA-Lab/Mobile-MMLU" target="_blank" class="social-link">π» GitHub</a>
|
939 |
</div>
|
940 |
</footer>
|
941 |
""",elem_id="custom-footer")
|