tatsu-lab/alpaca
Viewer • Updated • 52k • 122k • 1.11k
How to use Karimtawfik/llama-3b-finetuned with Diffusers:
pip install -U diffusers transformers accelerate
import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("meta-llama/Llama-3.2-3B-Instruct", dtype=torch.bfloat16, device_map="cuda")
pipe.load_lora_weights("Karimtawfik/llama-3b-finetuned")
prompt = "-"
image = pipe(prompt).images[0]This model is a fine-tuned version of Meta's LLaMA 3B Instruct, trained on the Alpaca dataset to improve its ability to follow instructions and generate helpful, human-like responses across a wide range of tasks.
Download them in the Files & versions tab.
Base model
meta-llama/Llama-3.2-3B-Instruct