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
It seems as though default signal handling doesn't work out of the box with the data generation script because big-sleep also uses this to gracefully exit during training.
So basically,
forpromptinprompts:
imagine() # Handles graceful exitifterminate:
exit() # This doesn't work because the top-level signal handler doesn't get called
This means that during each iteration imagine() thinks that the program has been terminated, but this message is not passed on to the script performing the loop.
The text was updated successfully, but these errors were encountered:
It seems as though default signal handling doesn't work out of the box with the data generation script because
big-sleep
also uses this to gracefully exit during training.So basically,
This means that during each iteration
imagine()
thinks that the program has been terminated, but this message is not passed on to the script performing the loop.The text was updated successfully, but these errors were encountered: