TwentyNine commited on
Commit
6c82ba0
1 Parent(s): 3075115

comma again

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -11,8 +11,8 @@ def transcribe(input_str):
11
 
12
  gradio_app = gr.Interface(
13
  transcribe,
14
- inputs=gr.Textbox(label='Input (kana)', value='', placeholder='', info='Ainu text written in Japanese katakana (input).', interactive=True, autofocus=True)
15
- outputs=[gr.Textbox(label='Output (alphabet)', info='Ainu text written in the Latin alphabet (output).')],
16
  title="BYT5 Ainu Kana-Latin Converter (V1)",
17
  )
18
 
 
11
 
12
  gradio_app = gr.Interface(
13
  transcribe,
14
+ inputs=gr.Textbox(label='Input (kana)', value='', placeholder='', info='Ainu text written in Japanese katakana (input).', interactive=True, autofocus=True),
15
+ outputs=gr.Textbox(label='Output (alphabet)', info='Ainu text written in the Latin alphabet (output).'),
16
  title="BYT5 Ainu Kana-Latin Converter (V1)",
17
  )
18