|
import gradio as gr |
|
|
|
def render_submission_page(): |
|
text = r"""Want to submit your own system to the leaderboard? Submit |
|
all the scores files for your system across evaluation sets of all the below supported datasets at |
|
<[email protected]> and we will handle the rest. Score files can be generated using the df_arena_toolkit. |
|
|
|
|
|
- [ASVSpoof2019](https://www.asvspoof.org/index2019.html) |
|
- [ASVSpoof2021LA](https://www.asvspoof.org/index2021.html) |
|
- [ASVSpoof2021DF](https://www.asvspoof.org/index2021.html) |
|
- [ASVSpoof2024-Dev](https://www.asvspoof.org/workshop2024) |
|
- [ASVSpoof2024-Eval](https://www.asvspoof.org/workshop2024) |
|
- [FakeOrReal](https://bil.eecs.yorku.ca/datasets/) |
|
- [Codecfake Yuankun et. al.](https://github.com/xieyuankun/Codecfake) |
|
- [ADD2022 Track 1](http://addchallenge.cn/add2022) |
|
- [ADD2022 Track 3](http://addchallenge.cn/add2022) |
|
- [ADD 2023 R1](http://addchallenge.cn/add2023) |
|
- [ADD2023 R2](http://addchallenge.cn/add2023) |
|
- [DFADD](https://github.com/isjwdu/DFADD) |
|
- [LibriVoc](https://github.com/csun22/Synthetic-Voice-Detection-Vocoder-Artifacts) |
|
- [SONAR](https://github.com/Jessegator/SONAR) |
|
""" |
|
|
|
|
|
return gr.Markdown(text) |
|
|
|
|
|
|
|
|