mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2026-09-18 16:55:14 +02:00
updated ltie, fixed multi clip skip and seeds not incrementing (+2 squashed commit)
Squashed commit: [a9328e29a] fixed multi clip skip and seeds not incrementing [cad3aa9db] streamline some debug outputs
This commit is contained in:
+3
-3
@@ -3498,7 +3498,7 @@ generation_outputs gpttype_generate(const generation_inputs inputs)
|
||||
if (debugmode==1 && !is_quiet)
|
||||
{
|
||||
std::string outstr = "";
|
||||
printf("\n\n[Debug: Dump Raw Input Tokens, format: %d]\n", file_format);
|
||||
printf("\n\n[Debug: Dump Raw Input Tokens]\n");
|
||||
outstr += get_tok_vec_str(embd_inp);
|
||||
printf("%s\n", RemoveBell(outstr).c_str());
|
||||
}
|
||||
@@ -3645,8 +3645,8 @@ generation_outputs gpttype_generate(const generation_inputs inputs)
|
||||
if (debugmode==1 && !is_quiet)
|
||||
{
|
||||
std::string outstr = "";
|
||||
printf("\n[Debug: Dump Forwarded Input Tokens, format: %d]\n", file_format);
|
||||
outstr += get_tok_vec_str(embd_inp);
|
||||
// printf("\n[Debug: Dump Forwarded Input Tokens, format: %d]\n", file_format);
|
||||
// outstr += get_tok_vec_str(embd_inp);
|
||||
outstr += "\n\n[Debug: n_past="+std::to_string(n_past)+" Context Size = " + std::to_string(current_context_tokens.size()) + "]\n";
|
||||
outstr += get_tok_vec_str(current_context_tokens);
|
||||
printf("%s\n\n", RemoveBell(outstr).c_str());
|
||||
|
||||
Reference in New Issue
Block a user