|
import torch |
|
from peft import PeftModel, PeftConfig |
|
from transformers import AutoModelForCausalLM, AutoTokenizer |
|
|
|
peft_model_id = f"kuyesu22/sunbird-ug-lang-v1.0-bloom-7b1-lora" |
|
config = PeftConfig.from_pretrained(peft_model_id) |
|
model = AutoModelForCausalLM.from_pretrained( |
|
config.base_model_name_or_path, |
|
return_dict=True, |
|
device_map="auto" |
|
) |
|
tokenizer = AutoTokenizer.from_pretrained(config.base_model_name_or_path) |
|
|
|
|
|
model = PeftModel.from_pretrained(model, peft_model_id) |
|
|
|
|
|
def make_inference(english): |
|
batch = tokenizer( |
|
f"### English:\n{english}: \n\n### Runyankole:", |
|
return_tensors="pt", |
|
) |
|
|
|
with torch.cuda.amp.autocast(): |
|
output_tokens = model.generate(**batch, max_new_tokens=100) |
|
|
|
return tokenizer.decode(output_tokens[0], skip_special_tokens=True) |
|
|
|
|
|
if __name__ == "__main__": |
|
|
|
import gradio as gr |
|
|
|
gr.Interface( |
|
make_inference, |
|
[ |
|
gr.inputs.Textbox(lines=2, label="Englis"), |
|
], |
|
gr.outputs.Textbox(label="Ad"), |
|
title="Sunbird lang Ug", |
|
description="English to Runyankole.", |
|
).launch() |
|
|