How to use from
vLLM
Install from pip and serve model
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "pAce576/llama3.2-1b-Instruct"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/completions" \
	-H "Content-Type: application/json" \
	--data '{
		"model": "pAce576/llama3.2-1b-Instruct",
		"prompt": "Once upon a time,",
		"max_tokens": 512,
		"temperature": 0.5
	}'
Use Docker
docker model run hf.co/pAce576/llama3.2-1b-Instruct
Quick Links

πŸ¦™ LLaMA3.2-1B-Instruct

pAce576/llama3.2-1b-Instruct is a 1.2 billion parameter language model based on Meta's LLaMA3 architecture. This model has been instruction-tuned for conversational and general-purpose natural language generation tasks.

🧠 Model Details

  • Architecture: LLaMA3.2 (custom 1.2B variant)
  • Base Model: LLaMA3-like Transformer
  • Instruction Tuning: Yes
  • Parameters: ~1.2 billion
  • Layers: Custom, designed for efficient inference on resource-constrained environments
  • Precision: fp16 supported (also tested with int8/4-bit via quantization)

πŸ“š Intended Use

This model is intended for:

  • Dialogue generation
  • Instruction following
  • Story writing
  • Light reasoning tasks

Example usage:

from transformers import AutoTokenizer, AutoModelForCausalLM

model = AutoModelForCausalLM.from_pretrained("pAce576/llama3.2-1b-Instruct")
tokenizer = AutoTokenizer.from_pretrained("pAce576/llama3.2-1b-Instruct")

#Your own generation function
Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ Ask for provider support