import gradio as gr | |
def render_submission_page(): | |
text = """ Want to submit your own system to the leaderboard? Submit | |
all the scores files for your system across evaluation sets of the supported datasets at | |
<[email protected]> and we will handle the rest. Ensure the filenames are named as follows for each datasets: | |
- asvspoof_2019.txt | |
- asvspoof_2021_df_eval.txt | |
- asvspoof_2021_la_eval.txt | |
- asvspoof_2024_dev.txt | |
- asvspoof_2024_eval.txt | |
- codecfake.txt | |
- fake_or_real.txt | |
- in_the_wild.txt | |
- sonar.txt | |
- dfadd.txt | |
- libri_voc.txt | |
- add_2022.txt | |
- add_2023.txt | |
""" | |
return gr.Markdown(text) | |