cati commited on
Commit
758baf1
1 Parent(s): d1c998d
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -60,18 +60,19 @@ All phoneme durations are measured automatically with no human correction. The p
60
  with gr.TabItem("CTC alignment"):
61
  gr.Markdown(
62
  """
63
- # Forced alignment demo with CTC decoding
64
- Choose a language to record or upload a sentence with corresponding text. Generate word and letter time-alignments from the language's wav2vec-2.0 model, with output in MFA (Montreal Forced Aligner)-compatible format.
65
  """
66
  )
67
 
68
  with gr.Row():
69
  with gr.Column():
70
  transcript_boxx = gr.Textbox(label="Transcript",placeholder="Type or paste the transcript here. Capitalisation and punctuation, if any, will be ignored.")
71
- alangmenu = gr.Radio(["Icelandic", "Faroese", "Norwegian"],value="Icelandic")
72
 
73
  audio_file = gr.Audio(type="filepath")
74
 
 
 
75
  al_btn = gr.Button(value="Run forced alignment")
76
 
77
  with gr.Column():
 
60
  with gr.TabItem("CTC alignment"):
61
  gr.Markdown(
62
  """
63
+ # Forced alignment with CTC decoding
64
+ Choose a language to upload a sentence with corresponding text. Generate word and letter time-alignments from the language's wav2vec-2.0 model, with output in MFA (Montreal Forced Aligner)-compatible format.
65
  """
66
  )
67
 
68
  with gr.Row():
69
  with gr.Column():
70
  transcript_boxx = gr.Textbox(label="Transcript",placeholder="Type or paste the transcript here. Capitalisation and punctuation, if any, will be ignored.")
 
71
 
72
  audio_file = gr.Audio(type="filepath")
73
 
74
+ alangmenu = gr.Radio(["Icelandic", "Faroese", "Norwegian"],value="Icelandic",label="Language")
75
+
76
  al_btn = gr.Button(value="Run forced alignment")
77
 
78
  with gr.Column():