mizoru commited on
Commit
830b36d
·
1 Parent(s): 9807d0a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -42,7 +42,9 @@ description = "This model will predict the pitch accent pattern of a word based
42
 
43
  article="<p style='text-align: center'><a href='https://mizoru.github.io/blog/2021/12/25/Japanese-pitch.html' target='_blank'>How did I make this and what is it for?</a></p>"
44
 
45
- examples = [['代わる.mp3'],['大丈夫な.mp3'],['熱くない.mp3'], ['あめー雨.mp3'], ['あめー飴.mp3']]
 
 
46
 
47
  enable_queue=True
48
 
 
42
 
43
  article="<p style='text-align: center'><a href='https://mizoru.github.io/blog/2021/12/25/Japanese-pitch.html' target='_blank'>How did I make this and what is it for?</a></p>"
44
 
45
+ ex_paths = ['代わる.mp3'],['大丈夫な.mp3'],['熱くない.mp3'], ['あめー雨.mp3'], ['あめー飴.mp3']
46
+
47
+ examples = [[path, None, 'remove silence'] for path in ex_paths]
48
 
49
  enable_queue=True
50