elvinan commited on
Commit
1ceb25d
·
1 Parent(s): d90ef22
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -8,9 +8,9 @@ translater = pipeline("translation", model="VietAI/envit5-translation")
8
 
9
  def translate(inp, direction):
10
  if direction == 'en->vi':
11
- text = "en: " + inp
12
  else:
13
- text = "vi: " + inp
14
 
15
  res = translater(
16
  text,
@@ -40,7 +40,7 @@ iface = gr.Interface(
40
  article=article,
41
  examples=examples,
42
  inputs=[
43
- gr.inputs.Textbox(placeholder="Enter text (maximum 100 lines)", label="Input", value=value),
44
  gr.inputs.Radio(
45
  choices=[
46
  'en->vi',
 
8
 
9
  def translate(inp, direction):
10
  if direction == 'en->vi':
11
+ text = "en: " + value
12
  else:
13
+ text = "vi: " + value
14
 
15
  res = translater(
16
  text,
 
40
  article=article,
41
  examples=examples,
42
  inputs=[
43
+ gr.inputs.Textbox(placeholder="Enter text (maximum 100 lines)", label="Input"),
44
  gr.inputs.Radio(
45
  choices=[
46
  'en->vi',