Minor change

This commit is contained in:
oobabooga 2023-01-18 21:59:23 -03:00
parent b3cba0b330
commit 6c7f187586

View File

@ -141,7 +141,7 @@ def generate_reply(question, tokens, inference_settings, selected_model, eos_tok
input_ids = encode(question, 1)
preset = preset.replace('max_new_tokens=tokens', 'max_new_tokens=1')
cuda = ".cuda()" if not args.cpu else ""
cuda = "" if args.cpu else ".cuda()"
for i in range(tokens):
if eos_token is None:
output = eval(f"model.generate(input_ids, {preset}){cuda}")