Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -118,6 +118,17 @@ if __name__ == "__main__":
|
|
118 |
# label="Prediction per time slot", show_label=False
|
119 |
# )
|
120 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
121 |
# Credits
|
122 |
with gr.Row():
|
123 |
gr.Markdown(
|
|
|
118 |
# label="Prediction per time slot", show_label=False
|
119 |
# )
|
120 |
|
121 |
+
|
122 |
+
with gr.Row():
|
123 |
+
gr.Examples(
|
124 |
+
[
|
125 |
+
os.path.join(os.path.dirname(__file__), "audio/sample1.wav"),
|
126 |
+
os.path.join(os.path.dirname(__file__), "audio/sample2.wav"),
|
127 |
+
],
|
128 |
+
upl_input,
|
129 |
+
lbl_output,
|
130 |
+
transcribe
|
131 |
+
)
|
132 |
# Credits
|
133 |
with gr.Row():
|
134 |
gr.Markdown(
|