Update app.py
Browse files
app.py
CHANGED
@@ -24,7 +24,7 @@ iface = gr.Interface(
|
|
24 |
description="2 possible input methods of audio file, transformed to text (as an output) and corrected grammar after(another output)!",
|
25 |
inputs=[gr.inputs.Audio(source="upload", type="filepath", label=None, optional=True),
|
26 |
gr.inputs.Audio(source="microphone", type="filepath", label=None, optional=True)],
|
27 |
-
examples=[[
|
28 |
outputs=['text','text']
|
29 |
)
|
30 |
|
|
|
24 |
description="2 possible input methods of audio file, transformed to text (as an output) and corrected grammar after(another output)!",
|
25 |
inputs=[gr.inputs.Audio(source="upload", type="filepath", label=None, optional=True),
|
26 |
gr.inputs.Audio(source="microphone", type="filepath", label=None, optional=True)],
|
27 |
+
examples=[["Grammar-Correct-Sample.mp3",type="filepath"], ["Grammar-Wrong-Sample.mp3",type="filepath"]],
|
28 |
outputs=['text','text']
|
29 |
)
|
30 |
|