Spaces:
Running
Running
add eval set
Browse files- src/texts.py +12 -1
src/texts.py
CHANGED
|
@@ -45,7 +45,7 @@ EVALUATION_QUEUE_TEXT = """
|
|
| 45 |
|
| 46 |
### 1) download the evaluation dataset
|
| 47 |
The evaluation dataset consists of wav / text pairs.
|
| 48 |
-
You can download
|
| 49 |
|
| 50 |
The format of the dataset is as follows:
|
| 51 |
```
|
|
@@ -57,6 +57,8 @@ eval/
|
|
| 57 |
├── ...
|
| 58 |
```
|
| 59 |
|
|
|
|
|
|
|
| 60 |
### 2) create your TTS dataset
|
| 61 |
Create a dataset with your TTS model and the evaluation dataset.
|
| 62 |
Use the wav files as speaker reference and the text as the prompt.
|
|
@@ -68,4 +70,13 @@ Submit your dataset below.
|
|
| 68 |
|
| 69 |
CITATION_BUTTON_LABEL = "Copy the following snippet to cite these results"
|
| 70 |
CITATION_BUTTON_TEXT = r"""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 71 |
"""
|
|
|
|
| 45 |
|
| 46 |
### 1) download the evaluation dataset
|
| 47 |
The evaluation dataset consists of wav / text pairs.
|
| 48 |
+
You can download ``speaker_text_pairs.tar.gz`` from [here](https://huggingface.co/datasets/ttsds/speaker_text_pairs/blob/main/speaker_text_pairs.tar.gz).
|
| 49 |
|
| 50 |
The format of the dataset is as follows:
|
| 51 |
```
|
|
|
|
| 57 |
├── ...
|
| 58 |
```
|
| 59 |
|
| 60 |
+
Please note that the .wav file is the speaker reference and the .txt file is the prompt.
|
| 61 |
+
|
| 62 |
### 2) create your TTS dataset
|
| 63 |
Create a dataset with your TTS model and the evaluation dataset.
|
| 64 |
Use the wav files as speaker reference and the text as the prompt.
|
|
|
|
| 70 |
|
| 71 |
CITATION_BUTTON_LABEL = "Copy the following snippet to cite these results"
|
| 72 |
CITATION_BUTTON_TEXT = r"""
|
| 73 |
+
@misc{minixhofer2024ttsds,
|
| 74 |
+
title={TTSDS -- Text-to-Speech Distribution Score},
|
| 75 |
+
author={Christoph Minixhofer and Ondřej Klejch and Peter Bell},
|
| 76 |
+
year={2024},
|
| 77 |
+
eprint={2407.12707},
|
| 78 |
+
archivePrefix={arXiv},
|
| 79 |
+
primaryClass={eess.AS},
|
| 80 |
+
url={https://arxiv.org/abs/2407.12707},
|
| 81 |
+
}
|
| 82 |
"""
|