Update README.md
Browse files
README.md
CHANGED
@@ -11,7 +11,7 @@ Arena's DB is _SQLlite_ DB file.
|
|
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
|
@@ -25,12 +25,12 @@ LIMIT 0, 49999;
|
|
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 |
-
|
34 |
```
|
35 |
|
36 |
If you use this data in your publication, please cite us!
|
|
|
11 |
### All votes mentioning a TTS model:
|
12 |
```sql
|
13 |
SELECT
|
14 |
+
spokentext, lang, chosen, rejected, count(spokentext) AS times, MAX(vl.timestamp) AS lastvote
|
15 |
FROM "main"."spokentext"
|
16 |
INNER JOIN votelog vl ON votelog_id = vl.id
|
17 |
WHERE
|
|
|
25 |
### All rejections of a TTS model against another:
|
26 |
```sql
|
27 |
SELECT
|
28 |
+
spokentext, lang, chosen, rejected, count(spokentext) AS times, MAX(vl.timestamp) AS lastvote
|
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 ASC
|
33 |
+
LIMIT 0, 49999;
|
34 |
```
|
35 |
|
36 |
If you use this data in your publication, please cite us!
|