mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-11-26 01:30:20 +01:00
Verbose should always print special tokens in input (#1707)
This commit is contained in:
parent
0df0b2d0f9
commit
2f1a2846d1
@ -229,7 +229,7 @@ def generate_reply(question, state, eos_token=None, stopping_strings=[]):
|
||||
output = input_ids[0]
|
||||
cuda = not any((shared.args.cpu, shared.args.deepspeed, shared.args.flexgen))
|
||||
if shared.args.verbose:
|
||||
print(f'\n\n{decode(input_ids[0], state["skip_special_tokens"])}\n--------------------\n')
|
||||
print(f'\n\n{decode(input_ids[0], False)}\n--------------------\n')
|
||||
|
||||
# Find the eos tokens
|
||||
eos_token_ids = [shared.tokenizer.eos_token_id] if shared.tokenizer.eos_token_id is not None else []
|
||||
|
Loading…
Reference in New Issue
Block a user