Merge pull request #525 from Isydmr/patch-1

Fix typo in model path
This commit is contained in:
Andrei 2023-07-25 16:31:02 -04:00 committed by GitHub
commit d3bf7db2db
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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:
```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