tclin commited on
Commit
82d67bf
·
verified ·
1 Parent(s): f1324a8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -58,13 +58,13 @@ demo = gr.Interface(
58
  inputs=gr.Audio(type="filepath"),
59
  outputs="text",
60
  title="ATC Speech Transcription",
61
- description="Upload an air traffic control audio file and get an accurate transcription using a Whisper model fine-tuned on the ATCOSIM dataset.",
62
  examples=[
63
  ["atc-sample-1.wav"],
64
  ["atc-sample-2.wav"],
65
  ["atc-sample-3.wav"]
66
  ],
67
- article="This model is fine-tuned on the ATCOSIM dataset to accurately transcribe air traffic control communications with a Word Error Rate (WER) of 3.73%."
68
  )
69
 
70
  # Launch the interface
 
58
  inputs=gr.Audio(type="filepath"),
59
  outputs="text",
60
  title="ATC Speech Transcription",
61
+ description="Convert Air Traffic Control (ATC) radio communications to text. Upload your own ATC audio or try the examples below.",
62
  examples=[
63
  ["atc-sample-1.wav"],
64
  ["atc-sample-2.wav"],
65
  ["atc-sample-3.wav"]
66
  ],
67
+ article="This model is fine-tuned on the ATCOSIM dataset with a 3.73% Word Error Rate on ATC communications. It is specifically optimized for aviation terminology, callsigns, and standard phraseology. Audio should be 16kHz sample rate for best results."
68
  )
69
 
70
  # Launch the interface