8000 Fix typo in 70B path · Wayan123/llama-cpp-python@0687a30 · GitHub
[go: up one dir, main page]

Skip to content

Commit 0687a30

Browse files
authored
Fix typo in 70B path
1 parent c7c700b commit 0687a30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ llm = Llama(model_path="./models/7B/ggml-model.bin", n_ctx=2048)
140140
Llama2 70b must set the `n_gqa` parameter (grouped-query attention factor) to 8 when loading:
141141

142142
```python
143-
llm = Llama(model_path="./models/7B/ggml-model.bin", n_gqa=8)
143+
llm = Llama(model_path="./models/70B/ggml-model.bin", n_gqa=8)
144144
```
145145

146146
## Web Server

0 commit comments

Comments
 (0)
0