just the past month summary
Browse files
README.md
CHANGED
@@ -38,7 +38,7 @@ LIMIT 0, 49999;
|
|
38 |
```
|
39 |
|
40 |
### All rejections of a TTS model against another:
|
41 |
-
**The one used in dataset viewer.** Note that the `chosen` column may include models that the `rejected` model beat more times. That is also why `
|
42 |
```sql
|
43 |
SELECT
|
44 |
st.spokentext,
|
@@ -68,12 +68,13 @@ LEFT JOIN (
|
|
68 |
GROUP BY
|
69 |
st.spokentext,
|
70 |
vl.rejected
|
71 |
-
HAVING
|
|
|
|
|
72 |
ORDER BY
|
73 |
((votes * COUNT(DISTINCT vl.chosen)) / 2) DESC,
|
74 |
COUNT(DISTINCT vl.chosen) DESC,
|
75 |
st.spokentext ASC;
|
76 |
-
|
77 |
```
|
78 |
|
79 |
If you use this data in your publication, please cite us!
|
|
|
38 |
```
|
39 |
|
40 |
### All rejections of a TTS model against another:
|
41 |
+
**The one used in dataset viewer.** Note that the `chosen` column may include models that the `rejected` model beat more times. That is also why `votes` may sometimes be even less than the amount of distinct chosen models.
|
42 |
```sql
|
43 |
SELECT
|
44 |
st.spokentext,
|
|
|
68 |
GROUP BY
|
69 |
st.spokentext,
|
70 |
vl.rejected
|
71 |
+
HAVING
|
72 |
+
votes > 0
|
73 |
+
AND lastvote BETWEEN datetime('now', '-1 month') AND datetime('now', 'localtime')
|
74 |
ORDER BY
|
75 |
((votes * COUNT(DISTINCT vl.chosen)) / 2) DESC,
|
76 |
COUNT(DISTINCT vl.chosen) DESC,
|
77 |
st.spokentext ASC;
|
|
|
78 |
```
|
79 |
|
80 |
If you use this data in your publication, please cite us!
|