Fix penalize_nl

This commit is contained in:
Andrei Betlen 2023-05-21 18:38:06 -04:00
parent 03e2947b03
commit b895511cca

View file

@ -351,7 +351,7 @@ class Llama:
alpha_presence=presence_penalty, alpha_presence=presence_penalty,
) )
if not penalize_nl: if not penalize_nl:
candidates.data[Llama.token_nl()].logit = nl_logit candidates.data[Llama.token_nl()].logit = llama_cpp.c_float(nl_logit)
if temp.value == 0.0: if temp.value == 0.0:
return llama_cpp.llama_sample_token_greedy( return llama_cpp.llama_sample_token_greedy(
ctx=self.ctx, ctx=self.ctx,