First gradio interface
Browse files- app.py +7 -1
- requirements.txt +1 -0
app.py
CHANGED
@@ -1 +1,7 @@
|
|
1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
+
|
4 |
+
with gr.Blocks() as demo:
|
5 |
+
gr.Textbox("Subtify")
|
6 |
+
|
7 |
+
demo.launch()
|
requirements.txt
CHANGED
@@ -1,3 +1,4 @@
|
|
|
|
1 |
speechbrain
|
2 |
soundfile
|
3 |
modelscope
|
|
|
1 |
+
gradio
|
2 |
speechbrain
|
3 |
soundfile
|
4 |
modelscope
|