You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I reviewed the Discussions, and have a new bug or useful enhancement to share.
Observed Behavior
Setting verbose = False when creating a Llama instance causes all program output to disappear while the model is running. This includes in particular logging output from other threads. In addition, if I create several Llama instances and use them in parallel from multiple threads, I sometimes receive some (but not all) output from one of the instances (I assume that's because another instance finished running first and restored the output for everyone). And sometimes output is not restored when all instances have finished (probably because the last instance to finish restored output to a blocked state).
Expected Behaviour
Setting verbose = False when creating a Llama instance should cause output from that instance to disappear. Other program output should still be visible (this includes logging output and output from other Llama instances).
The text was updated successfully, but these errors were encountered:
Prerequisites
Please answer the following questions for yourself before submitting an issue.
Observed Behavior
Setting
verbose = False
when creating aLlama
instance causes all program output to disappear while the model is running. This includes in particularlogging
output from other threads. In addition, if I create severalLlama
instances and use them in parallel from multiple threads, I sometimes receive some (but not all) output from one of the instances (I assume that's because another instance finished running first and restored the output for everyone). And sometimes output is not restored when all instances have finished (probably because the last instance to finish restored output to a blocked state).Expected Behaviour
Setting
verbose = False
when creating aLlama
instance should cause output from that instance to disappear. Other program output should still be visible (this includeslogging
output and output from otherLlama
instances).The text was updated successfully, but these errors were encountered: