Update app.py
Browse files
app.py
CHANGED
@@ -359,18 +359,36 @@ footer .social-links a:hover {
|
|
359 |
# """
|
360 |
|
361 |
# Create the Gradio Interface
|
|
|
362 |
with gr.Blocks(css=css_tech_theme) as demo:
|
|
|
363 |
gr.Markdown("""
|
364 |
-
<
|
365 |
<h1>π Mobile-MMLU Benchmark Competition</h1>
|
366 |
-
<h2
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
367 |
<p>
|
368 |
-
|
369 |
-
|
370 |
</p>
|
371 |
-
|
372 |
-
</div>
|
373 |
""")
|
|
|
|
|
374 |
|
375 |
|
376 |
with gr.Tabs(elem_id="tabs"):
|
|
|
359 |
# """
|
360 |
|
361 |
# Create the Gradio Interface
|
362 |
+
|
363 |
with gr.Blocks(css=css_tech_theme) as demo:
|
364 |
+
# Header Section
|
365 |
gr.Markdown("""
|
366 |
+
<header>
|
367 |
<h1>π Mobile-MMLU Benchmark Competition</h1>
|
368 |
+
<h2>π Push the Boundaries of Mobile AI</h2>
|
369 |
+
<p>
|
370 |
+
Test and optimize mobile-compatible Large Language Models (LLMs) with cutting-edge benchmarks
|
371 |
+
across 80 fields and over 16,000 questions.
|
372 |
+
</p>
|
373 |
+
<div class="header-buttons">
|
374 |
+
<a href="#overview">Learn More</a>
|
375 |
+
<a href="#submission">Submit Predictions</a>
|
376 |
+
<a href="#leaderboard">View Leaderboard</a>
|
377 |
+
</div>
|
378 |
+
</header>
|
379 |
+
""")
|
380 |
+
# # Pre-Tabs Section
|
381 |
+
gr.Markdown("""
|
382 |
+
<section class="pre-tabs">
|
383 |
+
<h2>Why Participate?</h2>
|
384 |
<p>
|
385 |
+
The Mobile-MMLU Benchmark Competition is a unique opportunity to test your LLMs against
|
386 |
+
real-world scenarios. Compete to drive innovation and make your mark in mobile AI.
|
387 |
</p>
|
388 |
+
</section>
|
|
|
389 |
""")
|
390 |
+
|
391 |
+
|
392 |
|
393 |
|
394 |
with gr.Tabs(elem_id="tabs"):
|