复现monodepth2过程中碰到的错误3:RuntimeError: CUDA out of memory.

错误

RuntimeError: CUDA out of memory. Tried to allocate 18.00 MiB (GPU 0; 8.00 GiB total capacity; 6.08 GiB already allocated; 0 bytes free; 6.31 GiB reserved in total by PyTorch) If reserved memory is >> allocated memory try setting max_split_size_mb to avoid fragmentation. See documentation for Memory Management and PYTORCH_CUDA_ALLOC_CONF

错误的原因以及解决的办法

报错的原因是显卡不够用
解决的办法:
①将option.py文件中的batch改成1
复现monodepth2过程中碰到的错误3:RuntimeError: CUDA out of memory._第1张图片

②换更高级的显卡
以上两种方法均可解决问题

你可能感兴趣的:(碰到的一些bug,pytorch,人工智能,python)