mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2026-09-19 01:05:09 +02:00
fixed an offset bug?
This commit is contained in:
+1
-1
@@ -313,7 +313,7 @@ void print_tok_vec(std::vector<float> &embd)
|
||||
{
|
||||
break;
|
||||
}
|
||||
if ((i + 2) >= embd_inp_len)
|
||||
if ((i + 2 - offset_fix) >= embd_inp_len)
|
||||
{
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user