jpdiazpardo commited on
Commit
b7ebc22
1 Parent(s): b354fb1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -40,6 +40,10 @@ article = ("<div style='text-align: center; max-width:800px; margin:10px auto;'>
40
 
41
  title = "Scream: Fine-Tuned Whisper model for automatic gutural speech recognition 🤟🤟🤟"
42
 
 
 
 
 
43
  #-------------------------------------------------------------------------------------------------------------------------------
44
 
45
  #Define classifier for sentiment analysis
@@ -123,7 +127,7 @@ with gr.Blocks() as demo:
123
  with gr.Column():
124
  gr.Interface(title = title, fn=transcribe, inputs = inputs, outputs = outputs,
125
  description=description, cache_examples=True, allow_flagging="never", article = article,
126
- examples='examples')
127
 
128
 
129
  demo.queue(concurrency_count=3)
 
40
 
41
  title = "Scream: Fine-Tuned Whisper model for automatic gutural speech recognition 🤟🤟🤟"
42
 
43
+ examples = [["Whitechapel - Prostatic Fluid Asphyxiation",True,True]
44
+ ["Suicide Silence - Genocide",True,True]
45
+ ]
46
+
47
  #-------------------------------------------------------------------------------------------------------------------------------
48
 
49
  #Define classifier for sentiment analysis
 
127
  with gr.Column():
128
  gr.Interface(title = title, fn=transcribe, inputs = inputs, outputs = outputs,
129
  description=description, cache_examples=True, allow_flagging="never", article = article,
130
+ examples=examples)
131
 
132
 
133
  demo.queue(concurrency_count=3)