Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
+
tags:
|
5 |
+
- arena
|
6 |
+
---
|
7 |
+
Arena's DB is _SQLlite_ DB file.
|
8 |
+
|
9 |
+
## Useful queries for TTS developers and evaluators
|
10 |
+
|
11 |
+
### All votes mentioning a TTS model:
|
12 |
+
```sql
|
13 |
+
SELECT
|
14 |
+
spokentext, lang, chosen, rejected, count(spokentext) AS times
|
15 |
+
FROM "main"."spokentext"
|
16 |
+
INNER JOIN votelog vl ON votelog_id = vl.id
|
17 |
+
WHERE
|
18 |
+
vl.chosen = "Pendrokar/xVASynth-TTS"
|
19 |
+
OR vl.rejected = "Pendrokar/xVASynth-TTS"
|
20 |
+
GROUP BY spokentext, chosen, rejected
|
21 |
+
ORDER BY times DESC, spokentext ASC
|
22 |
+
LIMIT 0, 49999;
|
23 |
+
```
|
24 |
+
|
25 |
+
### All rejections of a TTS model against another:
|
26 |
+
```sql
|
27 |
+
SELECT
|
28 |
+
spokentext, lang, chosen, rejected, count(spokentext) AS times
|
29 |
+
FROM "main"."spokentext"
|
30 |
+
INNER JOIN votelog vl ON votelog_id = vl.id AND vl.rejected = "Pendrokar/xVASynth-TTS"
|
31 |
+
GROUP BY spokentext, chosen
|
32 |
+
ORDER BY spokentext
|
33 |
+
ASC LIMIT 0, 49999;
|
34 |
+
```
|
35 |
+
|
36 |
+
If you use this data in your publication, please cite us!
|
37 |
+
|
38 |
+
Copy the BibTeX citation to cite this source:
|
39 |
+
```bibtext\n
|
40 |
+
@misc{tts-arena,
|
41 |
+
title = {Text to Speech Arena - Pendrokar's HF Spaces Fork},
|
42 |
+
author = {mrfakename and Srivastav, Vaibhav and Fourrier, Clémentine and Pouget, Lucain and Lacombe, Yoach and main and Gandhi, Sanchit},
|
43 |
+
year = 2024,
|
44 |
+
publisher = {Hugging Face},
|
45 |
+
howpublished = "\\url{https://huggingface.co/spaces/TTS-AGI/TTS-Arena}"
|
46 |
+
}
|
47 |
+
```
|