diff --git a/modules/text_generation.py b/modules/text_generation.py index 70f03443..16aba3cb 100644 --- a/modules/text_generation.py +++ b/modules/text_generation.py @@ -483,7 +483,6 @@ def generate_reply_custom(question, original_question, seed, state, stopping_str t1 = time.time() original_tokens = len(encode(original_question)[0]) new_tokens = len(encode(original_question + reply)[0]) - original_tokens - print(f'Output generated in {(t1-t0):.2f} seconds ({new_tokens/(t1-t0):.2f} tokens/s, {new_tokens} tokens, context {original_tokens}, seed {seed})') return