📝 clarify python command for llama example

This commit is contained in:
bbelescot 2023-12-08 13:55:26 +01:00
parent 53f7e68d7e
commit 68c4282766

View File

@ -32,7 +32,7 @@ Once you've converted the weights to MLX format, you can interact with the
LLaMA model:
```
python llama.py mlx_llama_weights.npz <path_to_tokenizer.model> "hello"
python llama.py <path_to_mlx_llama_weights.npz> <path_to_tokenizer.model> "hello"
```
Run `python llama.py --help` for more details.