Spaces:
Runtime error
Runtime error
File size: 971 Bytes
cad4b8f 7c76852 cad4b8f 1f78c35 cad4b8f 1f78c35 cad4b8f 1f78c35 cad4b8f 777384a cad4b8f 5a9444e |
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 AutoTokenizer, AutoModelForSeq2SeqLM, pipeline
import torch
from langs import LANGS
model = AutoModelForSeq2SeqLM.from_pretrained("facebook/nllb-200-distilled-600M")
tokenizer = AutoTokenizer.from_pretrained("facebook/nllb-200-distilled-600M")
source = 'som_Latn'
target = "eng_Latn"
def translate(source, target, text):
translation_pipeline = pipeline("translation",
model=model,
tokenizer=tokenizer,
src_lang=source,
tgt_lang=target)
result = translation_pipeline(text)
return result[0]['translation_text']
gr.Interface(
translate,
[
gr.components.Dropdown(label="Source Language", choices=LANGS),
gr.components.Dropdown(label="Target Language", choices=LANGS),
gr.components.Textbox(label="Text")
],
["text"],
).launch() |