GitHub2016年前深度学习论文:Deep-Learning-Papers-Reading-Roadmap

利稳
2023-12-01

这里分享下Github上的关于2016年深度学习:Deep-Learning-Papers-Reading-Roadmap
- GitHub论文总结链接:https://github.com/floodsung/Deep-Learning-Papers-Reading-Roadmap
- GitHub上的py下载程序有问题,调用读取”README.md”内文件会报错“’gbk’ codec can’t decode byte 0x89 in position 1829: illegal multibyte seque”,解决方法如下:

    with open('README.md') as readme: # 原py文件87行读取README文件,用下面的代码替换
    ……
    import codecs # 增加新的读取方法,使用codecs打开
    ……
    with codecs.open('README.md', mode="r", encoding="utf-8") as readme: 

其实我想说的是跑起来下载还是没有用的,国内下载,有些慢的要死,arXiV上的还经常连接不上,于是手动下载上传百度云盘,共享给大家:https://pan.baidu.com/s/1922BHc1kN9HJij1wQ6Yf4Q 密码:e36y

 类似资料: