This repo contains a low-rank adapter for LLaMA-13b fit on the Stanford Alpaca dataset.

How to use (8-bit)

import torch
from peft import PeftModel
from transformers import LlamaTokenizer, LlamaForCausalLM, GenerationConfig

tokenizer = LlamaTokenizer.from_pretrained("decapoda-research/llama-13b-hf")
model = LlamaForCausalLM.from_pretrained(
        "decapoda-research/llama-13b-hf",
        load_in_8bit=True,
        torch_dtype=torch.float16,
        device_map="auto",
)
model = PeftModel.from_pretrained(
    model, "baruga/alpaca-lora-13b",
    torch_dtype=torch.float16
)

For further information, check out this Github repo: https://github.com/tloen/alpaca-lora.

Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model is not currently available via any of the supported Inference Providers.
The model cannot be deployed to the HF Inference API: The model has no library tag.

Dataset used to train baruga/alpaca-lora-13b