陈泽通 commited on
Commit
f3463d9
·
1 Parent(s): bcf94e4

fix:处理目标语言错误的问题

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -18,8 +18,8 @@ def greet(text,src_lang,tgt_lang):
18
  return translated_text_from_text
19
 
20
  text = gr.Textbox(lines=5,label="输入文本",placeholder="请输入文本")
21
- src_lang = gr.Dropdown(label="源语言",choices=["en","zh"])
22
- tgt_lang = gr.Dropdown(label="目标语言",choices=["en","zh"])
23
  output_text = gr.Textbox(lines=5,label="翻译文本",placeholder="翻译文本")
24
  demo=gr.Interface(fn=greet, inputs=[text,src_lang,tgt_lang], outputs=output_text)
25
  demo.launch(share=True)
 
18
  return translated_text_from_text
19
 
20
  text = gr.Textbox(lines=5,label="输入文本",placeholder="请输入文本")
21
+ src_lang = gr.Dropdown(label="源语言",choices=['afr', 'amh', 'arb', 'ary', 'arz', 'asm', 'ast', 'azj', 'bel', 'ben', 'bos', 'bul', 'cat', 'ceb', 'ces', 'ckb', 'cmn', 'cmn_Hant', 'cym', 'dan', 'deu', 'ell', 'eng', 'est', 'eus', 'fin', 'fra', 'fuv', 'gaz', 'gle', 'glg', 'guj', 'heb', 'hin', 'hrv', 'hun', 'hye', 'ibo', 'ind', 'isl', 'ita', 'jav', 'jpn', 'kam', 'kan', 'kat', 'kaz', 'kea', 'khk', 'khm', 'kir', 'kor', 'lao', 'lit', 'ltz', 'lug', 'luo', 'lvs', 'mai', 'mal', 'mar', 'mkd', 'mlt', 'mni', 'mya', 'nld', 'nno', 'nob', 'npi', 'nya', 'oci', 'ory', 'pan', 'pbt', 'pes', 'pol', 'por', 'ron', 'rus', 'slk', 'slv', 'sna', 'snd', 'som', 'spa', 'srp', 'swe', 'swh', 'tam', 'tel', 'tgk', 'tgl', 'tha', 'tur', 'ukr', 'urd', 'uzn', 'vie', 'xho', 'yor', 'yue', 'zlm', 'zsm', 'zul'])
22
+ tgt_lang = gr.Dropdown(label="目标语言",choices=['afr', 'amh', 'arb', 'ary', 'arz', 'asm', 'ast', 'azj', 'bel', 'ben', 'bos', 'bul', 'cat', 'ceb', 'ces', 'ckb', 'cmn', 'cmn_Hant', 'cym', 'dan', 'deu', 'ell', 'eng', 'est', 'eus', 'fin', 'fra', 'fuv', 'gaz', 'gle', 'glg', 'guj', 'heb', 'hin', 'hrv', 'hun', 'hye', 'ibo', 'ind', 'isl', 'ita', 'jav', 'jpn', 'kam', 'kan', 'kat', 'kaz', 'kea', 'khk', 'khm', 'kir', 'kor', 'lao', 'lit', 'ltz', 'lug', 'luo', 'lvs', 'mai', 'mal', 'mar', 'mkd', 'mlt', 'mni', 'mya', 'nld', 'nno', 'nob', 'npi', 'nya', 'oci', 'ory', 'pan', 'pbt', 'pes', 'pol', 'por', 'ron', 'rus', 'slk', 'slv', 'sna', 'snd', 'som', 'spa', 'srp', 'swe', 'swh', 'tam', 'tel', 'tgk', 'tgl', 'tha', 'tur', 'ukr', 'urd', 'uzn', 'vie', 'xho', 'yor', 'yue', 'zlm', 'zsm', 'zul'])
23
  output_text = gr.Textbox(lines=5,label="翻译文本",placeholder="翻译文本")
24
  demo=gr.Interface(fn=greet, inputs=[text,src_lang,tgt_lang], outputs=output_text)
25
  demo.launch(share=True)