步骤:1、理解以上文档,报名比赛,下载数据集。
2、连接服务器,搭建运行环境(本地环境下一步搭建)。
这里问题挺多,记录一下命令吧:
conda create -n tianchi-svhn python=3.7
conda activate tianchi-svhn
(备选conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --set show_channel_urls yes
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/)
conda install pytorch torchvision cudatoolkit=10.0
pip install jupyter tqdm opencv-python matplotlib pandas
(备选pip install -i https://pypi.tuna.tsinghua.edu.cn/simple jupyter tqdm opencv-python matplotlib pandas)
conda install nb_conda
conda install ipykernel
python -m ipykernel install --user --name tianchi-svhn --display-name "py37_cv"
jupyter notebook
还需要在服务器的连接内,新建一个隧道,从998端口监听9999端口,浏览器输入:http://localhost:9998,输入用户名,启动jupyter
3、Baseline
注意路径的修改吧,jupyter是从根目录开始的,所以 “../ ” 表示的是server上的用户名文件。我还修改了文件名称。