martinarjovsky / WassersteinGAN

BSD 3-Clause "New" or "Revised" License
3.2k stars 725 forks source link

Bugfix to run the code on windows machines. #69

Closed kopytjuk closed 5 years ago

kopytjuk commented 5 years ago

In order to prevent the "[Errno 32] Broken pipe." error message on windows machines within the Dataload multiprocessing routine the code in the main.py has to be wrapped with:

if __name__=="__main__":
    ...

See this issue.

soumith commented 5 years ago

thanks!