Fix last_n_tokens_size
This commit is contained in:
parent
7e55244540
commit
f11e2a781c
1 changed files with 2 additions and 0 deletions
|
@ -295,7 +295,9 @@ class Llama:
|
|||
assert self.ctx is not None
|
||||
assert len(self.eval_logits) > 0
|
||||
n_vocab = int(llama_cpp.llama_n_vocab(self.ctx))
|
||||
n_ctx = int(llama_cpp.llama_n_ctx(self.ctx))
|
||||
top_k = llama_cpp.c_int(n_vocab) if top_k.value <= 0 else top_k
|
||||
last_n_tokens_size = llama_cpp.c_int(n_ctx) if last_n_tokens_size.value < 0 else last_n_tokens_size
|
||||
logits = self.eval_logits[-1]
|
||||
data = (llama_cpp.llama_token_data * n_vocab)(
|
||||
*[
|
||||
|
|
Loading…
Reference in a new issue