jlonsako commited on
Commit
4890ad0
1 Parent(s): da7f7e0

Add labels and description

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -121,6 +121,9 @@ def Transcribe(file):
121
  print(f"The script ran for {end_time - start_time} seconds.")
122
  return("./subtitle.sbv")
123
 
124
- demo = gr.Interface(fn=Transcribe, inputs=gr.File(), outputs="file")
 
 
 
125
  demo.launch()
126
 
 
121
  print(f"The script ran for {end_time - start_time} seconds.")
122
  return("./subtitle.sbv")
123
 
124
+ demo = gr.Interface(fn=Transcribe, inputs=gr.File(label="Upload an audio file of Amharic content"), gr.File(label="Download .sbv transcription")
125
+ title="Amharic Audio Transcription"
126
+ description="This application uses Meta MMS and a custom kenLM model to transcribe Amharic Audio files of arbitrary length into .sbv files. Upload an Amharic audio file and get your transcription!"
127
+ )
128
  demo.launch()
129