CoolFace
Modelpublic

mlx-community/Llama-3.2-3B-Instruct-8bit

sourceHugging Facellama3.2updated 2y agoView on Hugging Face
2likes2.7kdownloads
Model Card

mlx-community/Llama-3.2-3B-Instruct-8bit

The Model mlx-community/Llama-3.2-3B-Instruct-8bit was converted to MLX format from meta-llama/Llama-3.2-3B-Instruct using mlx-lm version 0.17.1.

Use with mlx

bash
pip install mlx-lm
python
from mlx_lm import load, generate

model, tokenizer = load("mlx-community/Llama-3.2-3B-Instruct-8bit")
response = generate(model, tokenizer, prompt="hello", verbose=True)