mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-10-01 01:26:03 -04:00
Minor improvement while running custom models
This commit is contained in:
parent
24c4c20391
commit
09a7c36e1b
@ -97,6 +97,7 @@ def generate_reply(question, max_new_tokens, do_sample, temperature, top_p, typi
|
|||||||
print(f"Output generated in {(t1-t0):.2f} seconds.")
|
print(f"Output generated in {(t1-t0):.2f} seconds.")
|
||||||
yield formatted_outputs(reply, shared.model_name)
|
yield formatted_outputs(reply, shared.model_name)
|
||||||
else:
|
else:
|
||||||
|
yield formatted_outputs(question, shared.model_name)
|
||||||
for i in tqdm(range(max_new_tokens//8+1)):
|
for i in tqdm(range(max_new_tokens//8+1)):
|
||||||
clear_torch_cache()
|
clear_torch_cache()
|
||||||
reply = shared.model.generate(question, token_count=8, temperature=temperature, top_p=top_p)
|
reply = shared.model.generate(question, token_count=8, temperature=temperature, top_p=top_p)
|
||||||
|
Loading…
Reference in New Issue
Block a user