yahma/alpaca-cleaned
Viewer • Updated • 51.8k • 32.7k • 825
How to use damerajee/Tinyllama-sft-small with PEFT:
from peft import PeftModel
from transformers import AutoModelForCausalLM
base_model = AutoModelForCausalLM.from_pretrained("unsloth/tinyllama-bnb-4bit")
model = PeftModel.from_pretrained(base_model, "damerajee/Tinyllama-sft-small")alpaca_prompt = """Below is an instruction that describes a task, paired with an input that provides further context. Write a response that appropriately completes the request.
### Instruction:
{}
### Input:
{}
### Response:
{}"""
from peft import PeftModel, PeftConfig
from transformers import AutoModelForCausalLM ,AutoTokenizer
config = PeftConfig.from_pretrained("damerajee/Tinyllama-sft-small")
model = AutoModelForCausalLM.from_pretrained("unsloth/tinyllama")
tokenizer=AutoTokenizer.from_pretrained("damerajee/Tinyllama-sft-small")
model = PeftModel.from_pretrained(model, "damerajee/Tinyllama-sft-small")l")
inputs = tokenizer(
[
alpaca_prompt.format(
"i want to learn machine learning help me",
"", # input
"", # output
)
]*1, return_tensors = "pt").to("cuda")
outputs = model.generate(**inputs, max_new_tokens = 312, use_cache = True)
tokenizer.batch_decode(outputs)
The base model unsloth/tinyllama-bnb-4bitwas Instruct finetuned using Unsloth
The model was trained for 1 epoch on a free goggle colab which took about 1 hour and 30 mins approximately
Base model
unsloth/tinyllama-bnb-4bit