Spaces:
Running
Running
File size: 965 Bytes
026ee6b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
LLM_BENCHMARKS_TEXT = f"""
## How it works
## Reproducibility
To reproduce our results, check out our repository [here](https://github.com/ttsds/ttsds).
"""
EVALUATION_QUEUE_TEXT = """
## How to submit a TTS model to the leaderboard
### 1) download the evaluation dataset
The evaluation dataset consists of wav / text pairs.
You can download it [here](https://huggingface.co/ttsds/eval).
The format of the dataset is as follows:
```
eval/
βββ 0001.wav
βββ 0001.txt
βββ 0002.wav
βββ 0002.txt
βββ ...
```
### 2) create your TTS dataset
Create a dataset with your TTS model and the evaluation dataset.
Use the wav files as speaker reference and the text as the prompt.
Create a .tar.gz file with the dataset, and make sure to inlcude .wav files and .txt files.
### 3) submit your TTS dataset
Submit your dataset below.
"""
CITATION_BUTTON_LABEL = "Copy the following snippet to cite these results"
CITATION_BUTTON_TEXT = r"""
"""
|