1.最好按照说明文档要求配好python3.7和pytorch1.0
安装pytorch1.0
conda install pytorch==1.10.1 torchvision==0.11.2 torchaudio==0.10.1 cudatoolkit=11.3 -c pytorch -c conda-forge
报错,执行下面再重执行安装
conda install conda=23.10.0
安装各种包
安装cv2:
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple opencv-python
安装tensorboard
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple tensorboardX
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple tensorboard
安装torch-tb-profiler
pip install torch-tb-profiler
安装
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple plyfile
如何执行shell脚本
在终端中输入“chmod +x 文件名.sh”,将文件设置为可执行文件。
在终端中输入“./文件名.sh”,即可运行shell脚本。
2. 【已解决】 FutureWarning: The module torch.distributed.launch is deprecated and will be removed in future.
torch.distributed.launch被弃用,考虑使用torchrun模块进行替换。
解决方案:
将训练脚本中的torch.distributed.launch替换为torchrun。例如,如果原始命令如下
python -m torch.distributed.launch --nproc_per_node=2 train.py
将其修改为下面的命令:
python -m torch.distributed.run --use-env --nproc_per_node=2 train.py
如果还是报错如下:
删掉–use-env
torch.distributed.elastic.multiprocessing.api:failed (exitcode: 1) local_rank: 0 (pid: 2344619) of binary: /home/vgg/anaco
ERROR:torch.distributed.elastic.multiprocessing.api:failed (exitcode: 1) local_rank: 0 (pid: 1105295) of binary: /home/vgg/anaconda3/envs/kunpython37/bin/python
3. 【已解决】ERROR:torch.distributed.elastic.multiprocessing.api:failed (exitcode: 1) local_rank: 0 (pid: 1447037) of binary: /usr/bin/python
解决方案:
在dataloader时参数shuffle默认False即可
4.【已解决】torch.distributed.elastic.multiprocessing.api:Sending process 2344620 closing signal SIGTERM
单卡跑就行,解决方案看5
5. 【已解决】module ‘progressbar’ has no attribute ‘Variable’
解决方案
卸载掉progressbar2和progressbar模块重装
pip uninstall progressbar2
pip uninstall progressbar
重装,建议安装低版本的progressbar2
pip install progressbar2==3.51
pip install progressbar==2.1
6. 【已解决】RuntimeError: Expected all tensors to be on the same device, but found at least two devices, cuda:0 and cuda:1! (when checking argument for argument weight in method wrapper__cudnn_convolution)
问题原因:参与运算的变量不在同一个gpu上,考虑将所有数据移动到同一个gpu上运行,或者干脆使用单卡运行,在训练脚本中改为:就是单卡跑
CUDA_VISIBLE_DEVICES=0,--nproc_per_node=1
7. 【已解决】CUDA out of memory.
使用查看显卡空间
gpustat
然后切换成有空的显卡文章来源:https://www.toymoban.com/news/detail-719344.html
CUDA_VISIBLE_DEVICES=有空的显卡号
8. 【已解决】训练意外中断,使用检查点文件继续训练
找到.log文件夹下的检查点文件,复制路径
在主函数里找到训练
找到训练里的第10个参数resume,添加default = ‘检查点文件地址’
如下:
文章来源地址https://www.toymoban.com/news/detail-719344.html
到了这里,关于CL_MVSNet复现可能会出现的问题汇总的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!