rename --model_path to --model-path (#151)

use same argument convention for mistral/mixtral as for llama convert.
This commit is contained in:
Daniel Strobusch
2023-12-21 15:28:57 +01:00
committed by GitHub
parent 3efb1cc2cc
commit 43b6522af2
5 changed files with 6 additions and 6 deletions

View File

@@ -43,7 +43,7 @@ Now from `mlx-exmaples/mixtral` convert and save the weights as NumPy arrays so
MLX can read them:
```
python convert.py --model_path $MIXTRAL_MODEL/
python convert.py --model-path $MIXTRAL_MODEL/
```
The conversion script will save the converted weights in the same location.
@@ -53,7 +53,7 @@ The conversion script will save the converted weights in the same location.
As easy as:
```
python mixtral.py --model_path $MIXTRAL_MODEL/
python mixtral.py --model-path $MIXTRAL_MODEL/
```
For more options including how to prompt the model, run: