From 03fe6896de09283a3eec55bcff5a9cc038217693 Mon Sep 17 00:00:00 2001 From: Juarez Bochi Date: Wed, 13 Dec 2023 11:37:02 -0500 Subject: [PATCH] Fix convert.py instructions for Bert model It just adds the missing backslash. --- bert/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bert/README.md b/bert/README.md index cea738df..70bc39a9 100644 --- a/bert/README.md +++ b/bert/README.md @@ -8,7 +8,7 @@ The `convert.py` script relies on `transformers` to download the weights, and ex ``` python convert.py \ - --bert-model bert-base-uncased + --bert-model bert-base-uncased \ --mlx-model weights/bert-base-uncased.npz ```