File size: 1,578 Bytes
41e2751 18f540d 41e2751 18f540d 41e2751 18f540d 41e2751 |
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 33 34 35 36 37 38 39 40 41 42 43 44 |
import torch
from peft import PeftModel, PeftConfig
from transformers import AutoModelForCausalLM, AutoTokenizer
peft_model_id = f"yajingchen/MarketMail-32p"
config = PeftConfig.from_pretrained(peft_model_id)
model = AutoModelForCausalLM.from_pretrained(
config.base_model_name_or_path,
return_dict=True,
load_in_8bit=True,
device_map="auto",
)
tokenizer = AutoTokenizer.from_pretrained(config.base_model_name_or_path)
# Load the Lora model
model = PeftModel.from_pretrained(model, peft_model_id)
def make_inference(travel_destination, description):
batch = tokenizer(
f"Below is a travel destination and description, please write a marketing email for this travel spot.\n\n### Travel Destination:\n{travel_destination}\n### Description:\n{description}\n\n### Marketing Email",
return_tensors="pt",
)
with torch.cuda.amp.autocast():
output_tokens = model.generate(**batch, max_new_tokens=200)
return tokenizer.decode(output_tokens[0], skip_special_tokens=True)
if __name__ == "__main__":
# make a gradio interface
import gradio as gr
gr.Interface(
make_inference,
[
gr.inputs.Textbox(lines=2, label="Travel Destination"),
gr.inputs.Textbox(lines=5, label="One Line Description"),
],
gr.outputs.Textbox(label="Ad"),
title="TravelDestination-MarketMail-AI",
description="TravelDestination-MarketMail-AI is a tool that generates marketing emails based off one travel destination name and a short line of description",
).launch() |