Spaces:
Running
Running
File size: 694 Bytes
546d18f 9c8ab75 546d18f 9c8ab75 546d18f 9c8ab75 546d18f 9c8ab75 546d18f 9c8ab75 |
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 |
import gradio as gr
from transformers import pipeline
models = [
"Helsinki-NLP/opus-mt-en-ber",
"Helsinki-NLP/opus-mt-ber-en",
"Helsinki-NLP/opus-mt-fr-ber",
"Helsinki-NLP/opus-mt-ber-fr",
"Helsinki-NLP/opus-mt-es-ber",
"Helsinki-NLP/opus-mt-ber-es",
"Helsinki-NLP/opus-mt-kab-en"
]
pipes = {}
def predict(text, model):
if model not in pipes:
pipes[model] = pipeline("translation", model=model)
pipe = pipes[model]
return pipe(text)[0]['translation_text']
demo = gr.Interface(
fn=predict,
inputs=[
gr.Textbox(lines=5, label="Input Text"),
gr.Dropdown(models, label="Model")
],
outputs='text',
)
demo.launch()
|