资源简介
那些值得读的深度学习论文集合
代码片段和文件信息
‘‘‘
Author: doodhwala
Python3 script to fetch the top 100 papers
‘‘‘
import os re requests codecs
directory = ‘papers‘
if not os.path.exists(directory):
os.makedirs(directory)
papers = []
with codecs.open(‘README.md‘ encoding=‘utf-8‘ mode=‘r‘ buffering=1 errors=‘strict‘) as f:
lines = f.read().split(‘\n‘)
heading section_path = ‘‘ ‘‘
for line in lines:
if(‘###‘ in line):
heading = line.strip().split(‘###‘)[1]
win_restricted_chars = re.compile(r‘[\^\/\\\:\*\?\“<>\|]‘)
heading = win_restricted_chars.sub(““ heading)
section_path = os.path.join(directory heading)
if not os.path.exists(section_path):
os.makedirs(section_path)
if(‘[[pdf]]‘ in line):
# The stars ensure you pick up only the top 100 papers
# Modify the expression if you want to fetch all other papers as well
result = re.search(‘\*\*(.*?)\*\*.*?\[\[pdf\]\]\((.*?)\)‘ line)
if(result):
paper url = result.groups()
paper = win_restricted_chars.sub(““ paper)
# Auto - resume functionality
if(not os.path.exists(os.path.join(section_path paper + ‘.pdf‘))):
print(‘Fetching‘ paper)
try:
response = requests.get(url)
with open(os.path.join(section_path paper + ‘.pdf‘) ‘wb‘) as f:
f.write(response.content)
except requests.exceptions.RequestException as e:
print(“Error: {}“.format(e))
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-10-19 07:28 awesome-deep-learning-papers-master\
文件 8 2018-10-19 07:28 awesome-deep-learning-papers-master\.gitignore
文件 2586 2018-10-19 07:28 awesome-deep-learning-papers-master\Contributing.md
文件 44838 2018-10-19 07:28 awesome-deep-learning-papers-master\README.md
文件 547 2018-10-19 07:28 awesome-deep-learning-papers-master\ReadingNotes.md
文件 1649 2018-10-19 07:28 awesome-deep-learning-papers-master\fetch_papers.py
文件 3435 2018-10-19 07:28 awesome-deep-learning-papers-master\get_authors.py
文件 30348 2018-10-19 07:28 awesome-deep-learning-papers-master\top100papers.bib
相关资源
- Python-DeepMoji模型的pyTorch实现
- Python-使用DeepFakes实现YouTube视频自动换
- Python-一系列高品质的动漫人脸数据集
- Python-Insightface人脸检测识别的最小化
- Python-自然场景文本检测PSENet的一个
- Python-在特征金字塔网络FPN的Pytorch实现
- Python-PyTorch实时多人姿态估计项目的实
- Python-用PyTorch10实现FasterRCNN和MaskRCNN比
- Python-心脏核磁共振MRI图像分割
- Python-基于YOLOv3的行人检测
- Python-RLSeq2Seq用于SequencetoSequence模型的
- Python-PyTorch对卷积CRF的参考实现
- Python-高效准确的EAST文本检测器的一个
- Python-pytorch实现的人脸检测和人脸识别
- Python-UNet用于医学图像分割的嵌套UN
- Python-TensorFlow弱监督图像分割
- Python-基于tensorflow实现的用textcnn方法
- Python-Keras实现Inceptionv4InceptionResnetv1和
- Python-pytorch中文手册
- Python-FastSCNN的PyTorch实现快速语义分割
- Python-滑动窗口高分辨率显微镜图像分
- Python-使用MovieLens数据集训练的电影推
- Python-机器学习驱动的Web应用程序防火
- Python-subpixel利用Tensorflow的一个子像素
-
Python-汉字的神经风格转移Neuralst
y - Python-神经网络模型能够从音频演讲中
- Python-深度增强学习算法的PyTorch实现策
- Python-基于深度学习的语音增强使用
- Python-基于知识图谱的红楼梦人物关系
- Python-STGAN用于图像合成的空间变换生
评论
共有 条评论