TTS_Arena / README.md
Pendrokar's picture
Update README.md
b354357 verified
|
raw
history blame
1.35 kB
---
language:
- en
tags:
- arena
---
Arena's DB is _SQLlite_ DB file.
## Useful queries for TTS developers and evaluators
### All votes mentioning a TTS model:
```sql
SELECT
spokentext, lang, chosen, rejected, count(spokentext) AS times, MAX(vl.timestamp) AS lastvote
FROM "main"."spokentext"
INNER JOIN votelog vl ON votelog_id = vl.id
WHERE
vl.chosen = "Pendrokar/xVASynth-TTS"
OR vl.rejected = "Pendrokar/xVASynth-TTS"
GROUP BY spokentext, chosen, rejected
ORDER BY times DESC, spokentext ASC
LIMIT 0, 49999;
```
### All rejections of a TTS model against another:
```sql
SELECT
spokentext, lang, chosen, rejected, count(spokentext) AS times, MAX(vl.timestamp) AS lastvote
FROM "main"."spokentext"
INNER JOIN votelog vl ON votelog_id = vl.id AND vl.rejected = "Pendrokar/xVASynth-TTS"
GROUP BY spokentext, chosen
ORDER BY spokentext ASC
LIMIT 0, 49999;
```
If you use this data in your publication, please cite us!
Copy the BibTeX citation to cite this source:
```bibtext\n
@misc{tts-arena,
title = {Text to Speech Arena - Pendrokar's HF Spaces Fork},
author = {mrfakename and Srivastav, Vaibhav and Fourrier, Clémentine and Pouget, Lucain and Lacombe, Yoach and main and Gandhi, Sanchit},
year = 2024,
publisher = {Hugging Face},
howpublished = "\\url{https://huggingface.co/spaces/TTS-AGI/TTS-Arena}"
}
```