Spaces:
Build error
Build error
morkovka1337
commited on
Commit
·
a615f36
1
Parent(s):
9363f83
Update app.py
Browse files
app.py
CHANGED
@@ -1,7 +1,14 @@
|
|
1 |
import gradio as gr
|
|
|
|
|
2 |
|
3 |
def greet(name):
|
4 |
return "Hello " + name + "!!"
|
5 |
|
|
|
|
|
|
|
|
|
|
|
6 |
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
7 |
iface.launch()
|
|
|
1 |
import gradio as gr
|
2 |
+
from huggingsound import SpeechRecognitionModel
|
3 |
+
|
4 |
|
5 |
def greet(name):
|
6 |
return "Hello " + name + "!!"
|
7 |
|
8 |
+
def get_model_response(audio):
|
9 |
+
model = SpeechRecognitionModel("jonatasgrosman/wav2vec2-large-xlsr-53-russian")
|
10 |
+
transcriptions = model.transcribe(audio)
|
11 |
+
return transcriptions
|
12 |
+
|
13 |
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
14 |
iface.launch()
|