d-ailin/GDN

OSError

Opened this issue · 2 comments

Thank you for the open source code.
I use the same configuration as the "readme.md". But I use the Windows 11 operating system, which is not easy to execute .sh files. So after I set the default value , I directly input “python main.py” to execute. The following error occurs:
image

And is there a better way to execute .sh files in Windows operating system?
Thank you very much.

You can replace the ':' in datestr by other marks. Like datestr.replace(':','').
Or just use: self.datestr = now.strftime('%m
%d-%H_%M_%S') (in main.py)
See pytorch/examples#865 for details.

Thanks for this comment, it solves my question