Lightweight 1B instruction-tuned text model.

Text Generation transformers License: llama3.2 text-generation llama instruct

Llama-3.2-1B-Instruct

A compact 1B instruction-tuned model. Load it with ๐Ÿค— Transformers:

from transformers import AutoModelForCausalLM, AutoTokenizer

model = AutoModelForCausalLM.from_pretrained("meta-llama/Llama-3.2-1B-Instruct")
tok   = AutoTokenizer.from_pretrained("meta-llama/Llama-3.2-1B-Instruct")