Spaces:
Sleeping
Sleeping
File size: 1,050 Bytes
297cd81 a1cc112 30c94e6 a1cc112 30c94e6 a1cc112 |
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 |
import gradio as gr
import torch
from peft import AutoPeftModelForSeq2SeqLM
from transformers import AutoTokenizer
model = AutoPeftModelForSeq2SeqLM.from_pretrained("kietnt0603/randeng-t5-vta-qa-lora")
tokenizer = AutoTokenizer.from_pretrained("IDEA-CCNL/Randeng-T5-784M-QA-Chinese")
device = 'cuda' if torch.cuda.is_available() else 'cpu'
def predict(text):
input_ids = tokenizer(text, max_length=156, return_tensors="pt", padding="max_length", truncation=True).input_ids.to(device)
outputs = model.generate(input_ids=input_ids, max_new_tokens=528, do_sample=True)
pred = tokenizer.batch_decode(outputs.detach().cpu().numpy(), skip_special_tokens=True)[0]
return pred
title = 'VTA-QA Demo'
article = "Loaded model from https://huggingface.co/kietnt0603/randeng-t5-vta-qa-lora"
# Create the Gradio interface
iface = gr.Interface(fn=predict,
inputs="textbox",
outputs="textbox",
title=title,
article=article)
# Launch the interface
iface.launch() |