neurlang commited on
Commit
abc155e
·
1 Parent(s): aa8293f

restructure gui

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -28,7 +28,9 @@ with gr.Blocks() as demo:
28
  ''')
29
  with gr.Row():
30
  sentence = gr.Textbox(label="Sentence", placeholder="Enter the text to phonemize...")
 
31
  language = gr.Textbox(label="Language", placeholder="Enter the language tag (e.g., 'en' for English), separate multiple languages by comma (,)...")
 
32
  is_reverse = gr.Checkbox(label="Reverse Phonemization")
33
  is_punct = gr.Checkbox(label="Keep Punctuation")
34
  submit_btn = gr.Button("Phonemize")
 
28
  ''')
29
  with gr.Row():
30
  sentence = gr.Textbox(label="Sentence", placeholder="Enter the text to phonemize...")
31
+ with gr.Row():
32
  language = gr.Textbox(label="Language", placeholder="Enter the language tag (e.g., 'en' for English), separate multiple languages by comma (,)...")
33
+ with gr.Row():
34
  is_reverse = gr.Checkbox(label="Reverse Phonemization")
35
  is_punct = gr.Checkbox(label="Keep Punctuation")
36
  submit_btn = gr.Button("Phonemize")