Spaces:
Sleeping
Sleeping
File size: 1,349 Bytes
100f3e3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
import gradio as gr
from pathlib import Path
import requests
import json
from translate_docx import translate_document, translate, Aligner
from nltk.tokenize.treebank import TreebankWordDetokenizer
ip='10.192.31.127'
config_folder = 'fast_align_config'
source_lang = 'en'
target_lang = 'ca'
temp_folder = 'tmp'
aligner = Aligner(config_folder, source_lang, target_lang, temp_folder)
detokenizer = TreebankWordDetokenizer()
def upload_file(filepath):
translated_file_name = translate_document(filepath, aligner, detokenizer, ip)
return [gr.UploadButton(visible=False), gr.DownloadButton(label=f"Download {translated_file_name}", value=translated_file_name, visible=True)]
def download_file():
return [gr.UploadButton(visible=True), gr.DownloadButton(visible=False)]
with gr.Blocks() as demo:
with gr.Tab("Text"):
gr.Interface(fn=translate, inputs=["text","text","text"], outputs="text")
with gr.Tab("Docx documents"):
gr.Markdown("First upload a file and and then you'll be able download it (but only once!)")
with gr.Row():
u = gr.UploadButton("Upload a file", file_count="single")
d = gr.DownloadButton("Download the file", visible=False)
u.upload(upload_file, u, [u, d])
d.click(download_file, None, [u, d])
if __name__ == "__main__":
demo.launch()
|