|
import os |
|
import torch |
|
import gradio as gr |
|
import time |
|
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM, pipeline |
|
from flores200_codes import flores_codes |
|
|
|
|
|
def load_models(): |
|
|
|
model_name_dict = {'nllb-finetuned-kutofa': 'ashourzadeh7/nllb-finetuned-kutofa', |
|
|
|
|
|
|
|
} |
|
|
|
model_dict = {} |
|
|
|
for call_name, real_name in model_name_dict.items(): |
|
print('\tLoading model: %s' % call_name) |
|
model = AutoModelForSeq2SeqLM.from_pretrained(real_name) |
|
tokenizer = AutoTokenizer.from_pretrained(real_name) |
|
model_dict[call_name+'_model'] = model |
|
model_dict[call_name+'_tokenizer'] = tokenizer |
|
|
|
return model_dict |
|
|
|
|
|
def translation(source, target, text): |
|
if len(model_dict) == 2: |
|
model_name = 'nllb-finetuned-kutofa' |
|
|
|
start_time = time.time() |
|
source = flores_codes[source] |
|
target = flores_codes[target] |
|
|
|
model = model_dict[model_name + '_model'] |
|
tokenizer = model_dict[model_name + '_tokenizer'] |
|
|
|
translator = pipeline('translation', model=model, tokenizer=tokenizer, src_lang=source, tgt_lang=target) |
|
output = translator(text, max_length=400) |
|
|
|
end_time = time.time() |
|
|
|
output = output[0]['translation_text'] |
|
result = {'inference_time': end_time - start_time, |
|
'source': source, |
|
'target': target, |
|
'result': output} |
|
return result |
|
|
|
|
|
if __name__ == '__main__': |
|
print('\tinit models') |
|
|
|
global model_dict |
|
|
|
model_dict = load_models() |
|
|
|
|
|
lang_codes = list(flores_codes.keys()) |
|
|
|
inputs = [gr.components.Dropdown(label='Source', choices=lang_codes), |
|
gr.components.Dropdown(label='Target', choices=lang_codes), |
|
gr.components.Textbox(lines=5, label="Input text"), |
|
] |
|
|
|
outputs = gr.components.JSON() |
|
|
|
title = "NLLB 200 - (Translation Demo)" |
|
|
|
demo_status = "Demo is running on CPU" |
|
description = f"Details: https://github.com/facebookresearch/fairseq/tree/nllb. {demo_status}" |
|
examples = [ |
|
['فارسی', 'کردی', 'سلام، حالتون خوبه؟'] |
|
] |
|
|
|
gr.Interface(translation, |
|
inputs, |
|
outputs, |
|
title=title, |
|
description=description, |
|
).launch() |
|
|
|
|
|
|