From 9eca19740955da3adb1a0bcbc3fd7b01fbaac5e8 Mon Sep 17 00:00:00 2001 From: oobabooga <112222186+oobabooga@users.noreply.github.com> Date: Mon, 11 Mar 2024 16:31:13 -0700 Subject: [PATCH] Minor logging change --- modules/cache_utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/cache_utils.py b/modules/cache_utils.py index 3f5a0f31..c235d0ca 100644 --- a/modules/cache_utils.py +++ b/modules/cache_utils.py @@ -30,8 +30,8 @@ def process_llamacpp_cache(model, new_sequence, past_sequence): overlapping_sequence = new_sequence[j1:j2 + 1] added_chunk = new_sequence[j2 + 1:] - # print(past_sequence) - # print(new_sequence) + # print(past_sequence.tolist()) + # print(new_sequence.tolist()) print() print('MATCHING PREFIX=', repr(shared.tokenizer.decode(matching_prefix)))