Commit
·
c743c6d
1
Parent(s):
14a0b3e
Minor error
Browse files
app.py
CHANGED
@@ -27,7 +27,10 @@ image_interface = gr.Interface(
|
|
27 |
fn=src_image_to_eng_translator,
|
28 |
inputs=[
|
29 |
gr.Image(label="Upload an Image", type="filepath"),
|
30 |
-
gr.Dropdown(choices=sorted_languages,
|
|
|
|
|
|
|
31 |
],
|
32 |
outputs=[
|
33 |
gr.Textbox(label="Image Text"),
|
|
|
27 |
fn=src_image_to_eng_translator,
|
28 |
inputs=[
|
29 |
gr.Image(label="Upload an Image", type="filepath"),
|
30 |
+
gr.Dropdown(choices=sorted_languages,
|
31 |
+
label="Select Language",
|
32 |
+
# default='English'
|
33 |
+
)
|
34 |
],
|
35 |
outputs=[
|
36 |
gr.Textbox(label="Image Text"),
|