Fix typo in 70B path
This commit is contained in:
parent
c7c700b0d4
commit
0687a3092b
1 changed files with 1 additions and 1 deletions
|
@ -140,7 +140,7 @@ llm = Llama(model_path="./models/7B/ggml-model.bin", n_ctx=2048)
|
||||||
Llama2 70b must set the `n_gqa` parameter (grouped-query attention factor) to 8 when loading:
|
Llama2 70b must set the `n_gqa` parameter (grouped-query attention factor) to 8 when loading:
|
||||||
|
|
||||||
```python
|
```python
|
||||||
llm = Llama(model_path="./models/7B/ggml-model.bin", n_gqa=8)
|
llm = Llama(model_path="./models/70B/ggml-model.bin", n_gqa=8)
|
||||||
```
|
```
|
||||||
|
|
||||||
## Web Server
|
## Web Server
|
||||||
|
|
Loading…
Reference in a new issue