|
import gradio as gr |
|
from backend.text_to_tgt import src_txt_to_eng_translator, formatted_languages |
|
from backend.audio_to_tgt import src_audio_to_eng_translator |
|
from backend.image_to_tgt import src_image_to_eng_translator, pytesseract_language_dict |
|
|
|
|
|
heading_txt = "Text-to-TranslatedText" |
|
description_txt = '''Enter text in any language, and get the translation in any language.''' |
|
|
|
language_list = formatted_languages.keys() |
|
|
|
txt_interface = gr.Interface( |
|
fn=src_txt_to_eng_translator, |
|
inputs=[ |
|
gr.Textbox(label="Text Input"), |
|
gr.Dropdown(choices=language_list, label="Select Target Language", interactive=True) |
|
], |
|
outputs=[ |
|
gr.Textbox(label="Translation"), |
|
gr.Textbox(label="Source Language") |
|
], |
|
title=heading_txt, |
|
description=description_txt, |
|
examples=[ |
|
["Bonjour, comment ça va ?", "Hindi"], |
|
["Привет, как дела?", "English"], |
|
["Hola, ¿cómo estás?", "Odia (Oriya)"], |
|
["你好,你怎么样", "English"], |
|
["Guten Tag! Wie geht's dir?", "English"] |
|
] |
|
) |
|
|
|
heading_image = "Image-to-TranslatedText" |
|
description_image = "Upload an image to extract text and translate it to any language. Make sure to choose language in 'Select Language'" |
|
|
|
sorted_languages = sorted(pytesseract_language_dict.keys()) |
|
|
|
image_interface = gr.Interface( |
|
fn=src_image_to_eng_translator, |
|
inputs=[ |
|
gr.Image(label="Upload an Image", type="filepath"), |
|
gr.Dropdown(choices=sorted_languages, |
|
label="Select Image Text Language", |
|
), |
|
gr.Dropdown( |
|
choices=language_list, |
|
label="Select Target Language", |
|
interactive=True |
|
) |
|
], |
|
outputs=[ |
|
gr.Textbox(label="Image Text"), |
|
gr.Textbox(label="Translated Text"), |
|
], |
|
title="Image Text Extractor and Translator", |
|
description=description_image, |
|
examples=[ |
|
["examples/images/hindi_image_sample.jpg", "Hindi", "English"], |
|
["examples/images/odia_sample_image.png", "Odia", "English"], |
|
["examples/images/russian_sample_image.png", "Russian", "English"] |
|
] |
|
) |
|
|
|
heading_audio = "Audio-to-TranslatedText" |
|
description_audio = "Upload an audio file to extract text and translate it to any language. Takes too much time without GPU." |
|
|
|
audio_interface = gr.Interface( |
|
fn=src_audio_to_eng_translator, |
|
inputs=[ |
|
gr.Audio( |
|
label="Upload an Audio file", |
|
type="filepath" |
|
), |
|
gr.Dropdown( |
|
choices=["turbo", "base", "tiny", "small", "medium", "large"], |
|
label="Select Whisper Model size", |
|
), |
|
gr.Dropdown( |
|
choices=language_list, |
|
label="Select Target Language", |
|
interactive=True |
|
) |
|
], |
|
outputs=[gr.Textbox(label="Original text"), |
|
gr.Textbox(label="Translated text"), |
|
gr.Textbox(label="Original Language")], |
|
title=heading_audio, |
|
description=description_audio, |
|
examples=[ |
|
["examples/audios/russian_sample_audio.mp3", "turbo", "English"] |
|
] |
|
) |
|
combined_interface = gr.TabbedInterface( |
|
[txt_interface, image_interface, audio_interface], |
|
['Text-to-English', 'Image-to-English', 'Audio-to-English'] |
|
) |
|
|
|
combined_interface.launch() |