Spaces:
Running
Running
File size: 440 Bytes
04f495f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import gradio as gr
def render_submission_page():
text = r"""
**Submit Your System**
Want to see your model on the Iqra’Eval leaderboard? Send your **team_name** and a CSV (with columns `id`,`predicted_sequence`) for the `IqraEval/open_testset` to **[email protected]**. We’ll handle the evaluation and add your entry automatically.
- **Open Testset**: `IqraEval/open_testset`
"""
return gr.Markdown(text)
|