论文复现RecNet
论文链接:https://paperswithcode.com/paper/reconstruction-network-for-video-captioning
github工程链接:https://github.com/hobincar/RecNet
环境配置
基于RTX2080Ti的服务器, Ubuntu16.04系统
cuda 10.0,
cudnn 7.5.1
pytorch 1.1.0
torchvision 0.3.0
其他环境按照论文的requirement.txt来,报错缺啥模块就安装啥
首先在Anaconda下创建一个虚拟环境并激活
#创建虚拟环境
conda create -n rn python=2.7.12
#退出base环境
conda deactivate
#激活环境
conda activate rn
其次在清华源头下载安装包
https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/
我选择linux-64,然后选择python2.7、pytorch1.1.0、cuda10
同时还要选择和 pytorch1.1.0 匹配的 torchvision0.3.0
安装包下好之后,我的目录如下:
执行下列命令: