CarrOps-Langue-Moore / goai_traduction.py
ArissBandoss's picture
Update goai_traduction.py
1fab1ce verified
raw
history blame contribute delete
739 Bytes
import torch
from transformers import pipeline
from transformers import AutoModelForSeq2SeqLM, AutoTokenizer
max_length = 512
device = 0 if torch.cuda.is_available() else "cpu"
model_id = "ArissBandoss/nllb-200-distilled-600M-finetuned-mos-to-fr-V2"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForSeq2SeqLM.from_pretrained(model_id)
def goai_traduction(text, src_lang, tgt_lang):
trans_pipe = pipeline("translation",
model=model, tokenizer=tokenizer,
src_lang=src_lang, tgt_lang=tgt_lang,
max_length=max_length,
device=device
)
return trans_pipe(text)[0]["translation_text"]