iwonachristop commited on
Commit
08d5a49
·
1 Parent(s): 9fc4854

Update citations

Browse files
Files changed (2) hide show
  1. app.py +3 -7
  2. src/citation.py +62 -0
app.py CHANGED
@@ -1,23 +1,19 @@
1
  import gradio as gr
2
  from apscheduler.schedulers.background import BackgroundScheduler
 
3
  from src.css_html_js import custom_css
4
  from src.envs import API, REPO_ID
5
  from src.process_leaderboard_data import Leaderboard
 
6
 
7
 
8
  def restart_space():
9
  API.restart_space(repo_id=REPO_ID)
10
 
11
 
12
- CITATION_TEXT = r"""@misc{cloneval,
13
- author={Christop, Iwona and Kuczyński, Tomasz and Kubis, Marek},
14
- title={{ClonEval: An Open Voice Cloning Benchmark}},
15
- year={2025},
16
- }"""
17
-
18
-
19
  app = gr.Blocks(css=custom_css)
20
 
 
21
  with app:
22
  # Init class Leaderboard
23
  leaderboard = Leaderboard()
 
1
  import gradio as gr
2
  from apscheduler.schedulers.background import BackgroundScheduler
3
+
4
  from src.css_html_js import custom_css
5
  from src.envs import API, REPO_ID
6
  from src.process_leaderboard_data import Leaderboard
7
+ from src.citation import CITATION_TEXT
8
 
9
 
10
  def restart_space():
11
  API.restart_space(repo_id=REPO_ID)
12
 
13
 
 
 
 
 
 
 
 
14
  app = gr.Blocks(css=custom_css)
15
 
16
+
17
  with app:
18
  # Init class Leaderboard
19
  leaderboard = Leaderboard()
src/citation.py ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ CITATION_TEXT = r"""@misc{cloneval,
2
+ author={Christop, Iwona and Kuczyński, Tomasz and Kubis, Marek},
3
+ title={{ClonEval: An Open Voice Cloning Benchmark}},
4
+ year={2025},
5
+ }
6
+
7
+ @article{crema-d,
8
+ author={Cao, Houwei and Cooper, David G. and Keutmann, Michael K. and Gur, Ruben C. and Nenkova, Ani and Verma, Ragini},
9
+ journal={IEEE Transactions on Affective Computing},
10
+ title={{CREMA-D: Crowd-Sourced Emotional Multimodal Actors Dataset}},
11
+ year={2014},
12
+ volume={5},
13
+ number={4},
14
+ pages={377--390},
15
+ doi={10.1109/TAFFC.2014.2336244},
16
+ }
17
+
18
+ @inproceedings{librispeech2015,
19
+ author={Panayotov, Vassil and Chen, Guoguo and Povey, Daniel and Khudanpur, Sanjeev},
20
+ booktitle={2015 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP)},
21
+ title={{Librispeech: An ASR corpus based on public domain audio books}},
22
+ year={2015},
23
+ pages={5206-5210},
24
+ keywords={Resource description framework;Genomics;Bioinformatics;Blogs;Information services;Electronic publishing;Speech Recognition;Corpus;LibriVox},
25
+ doi={10.1109/ICASSP.2015.7178964}
26
+ }
27
+
28
+ @article{ravdess,
29
+ doi={10.1371/journal.pone.0196391},
30
+ author={Livingstone, Steven R. AND Russo, Frank A.},
31
+ journal={PLOS ONE},
32
+ publisher={Public Library of Science},
33
+ title={{The Ryerson Audio-Visual Database of Emotional Speech and Song (RAVDESS): A dynamic, multimodal set of facial and vocal expressions in North American English}}",
34
+ year={2018},
35
+ month=may,
36
+ volume={13},
37
+ URL={https://doi.org/10.1371/journal.pone.0196391},
38
+ pages={1--35},
39
+ number={5},
40
+ }
41
+
42
+ @inbook{savee,
43
+ author={Haq, S. and Jackson, P. J. B.},
44
+ booktitle={{Machine Audition: Principles, Algorithms and Systems}},
45
+ title={{Multimodal Emotion Recognition}},
46
+ publisher={IGI Global},
47
+ address={Hershey PA},
48
+ year={2010},
49
+ month=aug,
50
+ editor={Wang, W.},
51
+ pages={398--423},
52
+ }
53
+
54
+ @misc{tess,
55
+ author={Pichora-Fuller, M. Kathleen and Dupuis, Kate},
56
+ publisher={Borealis},
57
+ title={{Toronto emotional speech set (TESS)}},
58
+ year={2020},
59
+ version={DRAFT VERSION},
60
+ doi={10.5683/SP2/E8H2MF},
61
+ URL={https://doi.org/10.5683/SP2/E8H2MF},
62
+ }"""