Update app.py
Browse files
app.py
CHANGED
@@ -308,7 +308,7 @@ color: blue;
|
|
308 |
}
|
309 |
|
310 |
/* Footer */
|
311 |
-
footer {
|
312 |
background: linear-gradient(135deg, #6a1b9a, #8e44ad);
|
313 |
color: #ffffff;
|
314 |
text-align: center;
|
@@ -318,12 +318,12 @@ footer {
|
|
318 |
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
|
319 |
}
|
320 |
|
321 |
-
footer h2 {
|
322 |
font-size: 1.5em;
|
323 |
margin-bottom: 15px;
|
324 |
}
|
325 |
|
326 |
-
footer p {
|
327 |
font-size: 0.8em;
|
328 |
line-height: 1.6;
|
329 |
margin-bottom: 20px;
|
@@ -408,12 +408,12 @@ with gr.Blocks(css=css_tech_theme) as demo:
|
|
408 |
""")
|
409 |
# # Pre-Tabs Section
|
410 |
gr.Markdown("""
|
411 |
-
|
412 |
-
<h2
|
413 |
-
<
|
414 |
The Mobile-MMLU Benchmark Competition offers a unique opportunity to evaluate your LLMs in real-world mobile scenarios.
|
415 |
-
Join the challenge to drive innovation, showcase your expertise, and shape the future of mobile AI.</
|
416 |
-
|
417 |
""")
|
418 |
|
419 |
# Tabs Section
|
@@ -548,7 +548,7 @@ with gr.Blocks(css=css_tech_theme) as demo:
|
|
548 |
|
549 |
# Footer Section
|
550 |
gr.Markdown("""
|
551 |
-
<footer>
|
552 |
<h2>Stay Connected</h2>
|
553 |
<p>
|
554 |
Follow us on social media or contact us for any queries. Let's shape the future of AI together!
|
@@ -557,7 +557,7 @@ with gr.Blocks(css=css_tech_theme) as demo:
|
|
557 |
<a href="https://website.com" target="_blank" class="social-link">π Website</a>
|
558 |
<a href="https://github.com/VILA-Lab/Mobile-MMLU" target="_blank" class="social-link">π GitHub</a>
|
559 |
</div>
|
560 |
-
</
|
561 |
""")
|
562 |
|
563 |
demo.launch()
|
|
|
308 |
}
|
309 |
|
310 |
/* Footer */
|
311 |
+
.footer {
|
312 |
background: linear-gradient(135deg, #6a1b9a, #8e44ad);
|
313 |
color: #ffffff;
|
314 |
text-align: center;
|
|
|
318 |
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
|
319 |
}
|
320 |
|
321 |
+
.footer h2 {
|
322 |
font-size: 1.5em;
|
323 |
margin-bottom: 15px;
|
324 |
}
|
325 |
|
326 |
+
.footer p {
|
327 |
font-size: 0.8em;
|
328 |
line-height: 1.6;
|
329 |
margin-bottom: 20px;
|
|
|
408 |
""")
|
409 |
# # Pre-Tabs Section
|
410 |
gr.Markdown("""
|
411 |
+
<section class="pre-tabs">
|
412 |
+
<h2>Why Participate?</h2>
|
413 |
+
<h3>
|
414 |
The Mobile-MMLU Benchmark Competition offers a unique opportunity to evaluate your LLMs in real-world mobile scenarios.
|
415 |
+
Join the challenge to drive innovation, showcase your expertise, and shape the future of mobile AI.</h3>
|
416 |
+
</section>
|
417 |
""")
|
418 |
|
419 |
# Tabs Section
|
|
|
548 |
|
549 |
# Footer Section
|
550 |
gr.Markdown("""
|
551 |
+
<section class="footer">
|
552 |
<h2>Stay Connected</h2>
|
553 |
<p>
|
554 |
Follow us on social media or contact us for any queries. Let's shape the future of AI together!
|
|
|
557 |
<a href="https://website.com" target="_blank" class="social-link">π Website</a>
|
558 |
<a href="https://github.com/VILA-Lab/Mobile-MMLU" target="_blank" class="social-link">π GitHub</a>
|
559 |
</div>
|
560 |
+
</section>
|
561 |
""")
|
562 |
|
563 |
demo.launch()
|