Fix a bug with wrong type
This commit is contained in:
parent
996f63e9e1
commit
fd80ddf703
1 changed files with 1 additions and 1 deletions
|
@ -330,7 +330,7 @@ n_keep = {self.params.n_keep}
|
|||
|
||||
# Apply params.logit_bias map
|
||||
for key, value in self.params.logit_bias.items():
|
||||
logits[key] += llama_cpp.c_float(value)
|
||||
logits[key] += value
|
||||
|
||||
_arr = (llama_cpp.llama_token_data * n_vocab)(*[
|
||||
llama_cpp.llama_token_data(token_id, logits[token_id], 0.0)
|
||||
|
|
Loading…
Reference in a new issue