Spaces:
Sleeping
Sleeping
Commit
·
c92a84b
1
Parent(s):
eb04c56
Update app.py
Browse files
app.py
CHANGED
@@ -33,7 +33,12 @@ def translate_gradio(input):
|
|
33 |
|
34 |
|
35 |
|
|
|
|
|
36 |
translate_interface = gr.Interface(fn = translate_gradio,
|
37 |
-
|
38 |
-
|
|
|
|
|
|
|
39 |
translate_interface.launch(inline = False)
|
|
|
33 |
|
34 |
|
35 |
|
36 |
+
|
37 |
+
description = 'Translating "English Data Science" content into Arabic'
|
38 |
translate_interface = gr.Interface(fn = translate_gradio,
|
39 |
+
title = 'Translating "English Data Science" content into Arabic'
|
40 |
+
inputs=gr.inputs.Textbox(line = 7, label = 'english content'),
|
41 |
+
outputs="text",
|
42 |
+
description = description
|
43 |
+
)
|
44 |
translate_interface.launch(inline = False)
|