mlx-community/Llama-3.2-3B-Instruct-8bit
22.7k
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
pip install mlx-lmfrom mlx_lm import load, generate
model, tokenizer = load("mlx-community/Llama-3.2-3B-Instruct-8bit")
response = generate(model, tokenizer, prompt="hello", verbose=True)