Spaces:
Runtime error
Runtime error
Add text
Browse files
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: " +
|
12 |
else:
|
13 |
-
text = "vi: " +
|
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"
|
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',
|