BenDaouda commited on
Commit
9037e2d
·
1 Parent(s): 7abd97b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -10
app.py CHANGED
@@ -1,16 +1,13 @@
1
  import requests
2
  import gradio as gr
 
3
 
4
- API_URL = "https://api-inference.huggingface.co/models/BenDaouda/wav2vec2-large-xls-r-300m-wolof-test-coloab"
5
- headers = {"Authorization": "Bearer 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"}
6
 
7
- def query(filename):
8
- with open(filename, "rb") as f:
9
- data = f.read()
10
- response = requests.post(API_URL, headers=headers, data=data)
11
- return response.json()
12
-
13
-
14
- iface = gr.Interface(fn=query,inputs=gr.Audio(source="microphone", type="filepath"),outputs="text")
15
 
16
  iface.launch()
 
1
  import requests
2
  import gradio as gr
3
+ from transformers import pipeline
4
 
5
+ p = pipeline("wav2vec2-large-xls-r-300m-wolof-test-coloab")
 
6
 
7
+ def transcribe(audio):
8
+ text = p(audio)["text"]
9
+ return text
10
+
11
+ iface = gr.Interface(fn=transcribe,inputs=gr.Audio(source="microphone", type="filepath"),outputs="text")
 
 
 
12
 
13
  iface.launch()