Llama 2 is a collection of pretrained and fine-tuned generative text models ranging in scale from 7 billion to 70 billion parameters. This is the repository for the 7B fine-tuned model, in npz format suitable for use in Apple's MLX framework.
1# Install mlx, mlx-examples, huggingface-cli
2pip install mlx
3pip install huggingface_hub hf_transfer
4git clone https://github.com/ml-explore/mlx-examples.git
5
6# Download model
7export HF_HUB_ENABLE_HF_TRANSFER=1
8huggingface-cli download --local-dir Llama-2-7b-chat-mlx/ mlx-community/Llama-2-7b-chat-4-bit
9
10# Run example
11python mlx-examples/llms/llama/llama.py --prompt "My name is " --model-path Llama-2-7b-chat-mlx/