Deep Learning papers reading roadmap for anyone who are eager to learn this amazing tech!
38.34k
stars
7.32k
forks
source link
The download.py script needs an extra "encoding='utf-8'" at line87 or else it won't work on Windows computers #113
Closed
Trenza1ore closed 8 months ago
Original line 87: with open('README.md') as readme:
Corrected version of line 87: with open('README.md','r',encoding='utf-8') as readme:
Explanation: Windows uses GBK to decode rather than utf-8 at default setting