Miwa-Keita commited on
Commit
e4525f0
1 Parent(s): 46b5046

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -21,8 +21,8 @@ def postprocess_output(model_output):
21
  # インターフェースを定義
22
  iface = gr.Interface(
23
  fn=lambda x: postprocess_output(preprocess_input(x)),
24
- inputs=gr.inputs.Textbox(label="変換する文字列(カタカナ)"),
25
- outputs=gr.outputs.Textbox(label="変換結果"),
26
  title="ニューラルかな漢字変換モデルzenz-v1のデモ",
27
  description="変換したい文字列をカタカナを入力してください"
28
  )
 
21
  # インターフェースを定義
22
  iface = gr.Interface(
23
  fn=lambda x: postprocess_output(preprocess_input(x)),
24
+ inputs=gr.Textbox(label="変換する文字列(カタカナ)"),
25
+ outputs=gr.Textbox(label="変換結果"),
26
  title="ニューラルかな漢字変換モデルzenz-v1のデモ",
27
  description="変換したい文字列をカタカナを入力してください"
28
  )