Skip to content

Fix docs #2730

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,8 @@ Building the program with BLAS support may lead to some performance improvements
```bash
# obtain the original LLaMA model weights and place them in ./models
ls ./models
65B 30B 13B 7B tokenizer_checklist.chk tokenizer.model
65B 30B 13B 7B tokenizer.model

# [Optional] for models using BPE tokenizers
ls ./models
65B 30B 13B 7B vocab.json
Expand All @@ -513,7 +514,8 @@ ls ./models
python3 -m pip install -r requirements.txt

# convert the 7B model to ggml FP16 format
python3 convert.py models/7B/
# Use --ctx 4096 for LLaMA v2
python3 convert.py models/7B/ --ctx 2048

# [Optional] for models using BPE tokenizers
python convert.py models/7B/ --vocabtype bpe
Expand Down