Spaces:
Runtime error
Runtime error
File size: 1,765 Bytes
c78ba93 c111383 c78ba93 29d95b0 c78ba93 c111383 3d95d76 c78ba93 3d95d76 c78ba93 |
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 45 46 47 48 49 50 51 52 53 54 55 56 57 |
import torch
from peft import PeftModel, PeftConfig
from transformers import AutoModelForCausalLM, AutoTokenizer
peft_model_id = f"jmartin233/bloom-1b7-lora-reading-comprehension"
config = PeftConfig.from_pretrained(peft_model_id)
model = AutoModelForCausalLM.from_pretrained(
config.base_model_name_or_path,
return_dict=True,
load_in_8bit=False,
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(person, location, grammar, level):
batch = tokenizer(f"""
Below is a set of requirements for a short passage of English. Please write a passage that meets these requirements:
### Requirements:
person: {person}
location: {location}.
grammar: {grammar}
level: {level}
### Passage:
Passage:""",
return_tensors='pt')
with torch.cuda.amp.autocast():
output_tokens = model.generate(**batch, max_new_tokens=50)
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="Someone's name"),
gr.inputs.Textbox(lines=2, label="A location they might visit"),
gr.inputs.Textbox(lines=2, label="A type of grammar to use"),
gr.inputs.Textbox(lines=2, label="The leve of English to use (beginner, intermediate, advanced))"),
],
gr.outputs.Textbox(label="Passage"),
title="Reading Comprehension",
description="A generative model that generates simple texts for testing reading comprehension.",
).launch() |