chenyuntc / pytorch-book

PyTorch tutorials and fun projects including neural talk, neural style, poem writing, anime generation (《深度学习框架PyTorch:入门与实战》)
MIT License
11.99k stars 3.73k forks source link

第六章部分代码在windows下运行出错 #131

Open linshk opened 5 years ago

linshk commented 5 years ago

https://github.com/chenyuntc/pytorch-book/blob/master/chapter6-%E5%AE%9E%E6%88%98%E6%8C%87%E5%8D%97/models/basic_module.py:line27

name = time.strftime(prefix + '%m%d_%H:%M:%S.pth')

windows文件名不支持冒号,建议改成别的格式,如

name = time.strftime(prefix + '%m%d_%H-%M-%S.pth')
RruceLeeLQ commented 5 years ago

@linshk think u

cheerTT commented 5 years ago

谢谢!

0x2l commented 3 years ago

非常感谢!