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
Hi,
Thank you for a very nice work.
I have noticed that after the training is over, the multiple processes aren't terminated.
Lines 370-372 in model.py:
for p in jobs:
p.join()
p.terminate()
I have "solved" the issue by masking the p.join() line but I guess this is not the optimal solution.
Can fix the issue?
The text was updated successfully, but these errors were encountered:
Hi,
Thank you for a very nice work.
I have noticed that after the training is over, the multiple processes aren't terminated.
Lines 370-372 in model.py:
for p in jobs:
p.join()
p.terminate()
I have "solved" the issue by masking the p.join() line but I guess this is not the optimal solution.
Can fix the issue?
The text was updated successfully, but these errors were encountered: