Jellyfish042 commited on
Commit
68b02f7
·
1 Parent(s): 820f694
Files changed (1) hide show
  1. app.py +13 -3
app.py CHANGED
@@ -299,10 +299,20 @@ def get_default_example():
299
 
300
  # Build Gradio UI
301
  with gr.Blocks(title="Compression-Lens: RWKV-7 vs Qwen3", theme=gr.themes.Soft()) as demo:
302
- gr.Markdown(
303
  """
304
- # 🔬 Compression-Lens: RWKV-7 vs Qwen3 Byte-Level Comparison
305
- Compare the byte-level prediction performance between **RWKV7-G1C-1.5B** and **Qwen3-1.7B-Base**.
 
 
 
 
 
 
 
 
 
 
306
  """
307
  )
308
 
 
299
 
300
  # Build Gradio UI
301
  with gr.Blocks(title="Compression-Lens: RWKV-7 vs Qwen3", theme=gr.themes.Soft()) as demo:
302
+ gr.HTML(
303
  """
304
+ <div style="text-align: center; margin-bottom: 20px;">
305
+ <h1 style="margin-bottom: 10px;">🔬 Compression-Lens: RWKV-7 vs Qwen3 Byte-Level Comparison</h1>
306
+ <p style="margin-bottom: 15px; color: #666;">Compare the byte-level prediction performance between <strong>RWKV7-G1C-1.5B</strong> and <strong>Qwen3-1.7B-Base</strong>.</p>
307
+ <div style="display: flex; justify-content: center; align-items: center; gap: 10px;">
308
+ <a href="https://github.com/Jellyfish042/uncheatable_eval" target="_blank" style="text-decoration: none;">
309
+ <img src="https://img.shields.io/badge/GitHub-Project-181717?logo=github" alt="GitHub Project">
310
+ </a>
311
+ <a href="https://huggingface.co/spaces/Jellyfish042/UncheatableEval" target="_blank" style="text-decoration: none;">
312
+ <img src="https://img.shields.io/badge/%F0%9F%8F%86%20Leaderboard-Gradio-ff7c00" alt="Leaderboard">
313
+ </a>
314
+ </div>
315
+ </div>
316
  """
317
  )
318