Update llama.py

update n_batch default to 512 to match upstream llama.cpp
This commit is contained in:
eiery 2023-04-23 20:56:40 -04:00 committed by GitHub
parent e99caedbbd
commit aa12d8a81f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -37,7 +37,7 @@ class Llama:
use_mlock: bool = False,
embedding: bool = False,
n_threads: Optional[int] = None,
n_batch: int = 8,
n_batch: int = 512,
last_n_tokens_size: int = 64,
lora_base: Optional[str] = None,
lora_path: Optional[str] = None,