papasega commited on
Commit
7c125bc
1 Parent(s): 019e9f5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -9,6 +9,10 @@ def transcribe(audio):
9
 
10
  demo = gr.Interface(fn=transcribe, inputs="file", outputs="text",
11
  title="Transcription automatique du wolof",
12
- description="Ce modèle transcrit un fichier audio en wolof en texte en utilisant l'alphabet latin.")
 
 
 
 
13
 
14
  demo.launch()
 
9
 
10
  demo = gr.Interface(fn=transcribe, inputs="file", outputs="text",
11
  title="Transcription automatique du wolof",
12
+ description="Ce modèle transcrit un fichier audio en wolof en texte en utilisant l'alphabet latin.",
13
+ examples=[["file.wav"]],
14
+ input_label="Audio en wolof",
15
+ output_label="Transcription alphabet latin"
16
+ )
17
 
18
  demo.launch()