Spaces:
Sleeping
Sleeping
File size: 1,899 Bytes
e9496f5 |
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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
from transformers import pipeline
import gradio as gr
Translate = pipeline("translation_en_to_fr", model="shashankheg/my_opus_books_model")
def QA(English_input):
result=Translate(English_input)
for i in result :
op=i['translation_text']
return op
js = """
function createGradioAnimation() {
var container = document.createElement('div');
container.id = 'gradio-animation';
container.style.fontSize = '2em';
container.style.fontWeight = 'bold';
container.style.textAlign = 'center';
container.style.marginBottom = '20px';
container.style.color='#d3dfe2';
container.style.padding = '10px';
container.style.borderRadius = '5px';
var text = 'Translation using Google T5';
for (var i = 0; i < text.length; i++) {
(function(i){
setTimeout(function(){
var letter = document.createElement('span');
letter.style.opacity = '0';
letter.style.transition = 'opacity 0.5s';
letter.innerText = text[i];
container.appendChild(letter);
setTimeout(function() {
letter.style.opacity = '3';
}, 50);
}, i * 250);
})(i);
}
var gradioContainer = document.querySelector('.gradio-container');
gradioContainer.insertBefore(container, gradioContainer.firstChild);
return 'Animation created';
}
"""
custom_css = """
body {
background-color: #d2d9db; /* Light blue background */
}
"""
with gr.Blocks(js=js,css=".gradio-container {background-color: #d2d9db}") as demo:
gr.HTML("<center><h1>π Language Translator from English to French</h1></center>")
inp = gr.Textbox(label="English Text",placeholder="English Text here:")
out = gr.Textbox(label='French Translation')
theme=gr.themes.Soft()
inp.change(QA, inp, out)
demo.launch()
|