CompVis / adaptive-style-transfer

source code for the ECCV18 paper A Style-Aware Content Loss for Real-time HD Style Transfer
https://compvis.github.io/adaptive-style-transfer/
GNU General Public License v3.0
723 stars 139 forks source link

multiple process aren't terminated #39

Open ayziksha opened 4 years ago

ayziksha commented 4 years ago

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?