From fba14493188f406cf461f9193f9aeaa31d4be4b2 Mon Sep 17 00:00:00 2001 From: bbelescot Date: Fri, 8 Dec 2023 13:55:26 +0100 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=93=9D=20clarify=20python=20command?= =?UTF-8?q?=20for=20llama=20example?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- llama/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama/README.md b/llama/README.md index 3a3e9e89..d1ffba88 100644 --- a/llama/README.md +++ b/llama/README.md @@ -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 "hello" +python llama.py "hello" ``` Run `python llama.py --help` for more details. From 8a0ed6d5e51b4e28eb2a9f291f712b9188fea27b Mon Sep 17 00:00:00 2001 From: bbelescot Date: Fri, 8 Dec 2023 17:11:50 +0100 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=93=9D=20=20apply=20the=20path=20chan?= =?UTF-8?q?ge=20to=20the=20convert=20cmd=20for=20consistency?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- llama/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama/README.md b/llama/README.md index d1ffba88..b9f487dd 100644 --- a/llama/README.md +++ b/llama/README.md @@ -23,7 +23,7 @@ Alternatively, you can also download a select converted checkpoints from the [ml Convert the weights with: ``` -python convert.py mlx_llama_weights.npz +python convert.py ``` ### Run