摘要: 问题:CUDNN_STATUS_INTERNAL_ERROR 原因:显存不足 解决:显存充裕的卡 阅读全文
posted @ 2021-04-15 20:58 BlueOceans 阅读(1006) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/luzhanbo207/article/details/105736895 阅读全文
posted @ 2021-03-03 10:08 BlueOceans 阅读(68) 评论(0) 推荐(0) 编辑
摘要: 1. 安装nccl2 (1)下载:https://developer.nvidia.com/nccl (2)根据机型选择对应的安装文件:例如:nccl-repo-rhel7-2.7.8-ga-cuda10.1-1-1.x86_64.rpm (3)安装命令: sudo yum nccl-repo-rh 阅读全文
posted @ 2021-02-24 19:17 BlueOceans 阅读(360) 评论(0) 推荐(0) 编辑
摘要: find 源目录 -type f -name '*.txt' -exec mv {} 目标目录 \; 阅读全文
posted @ 2020-12-24 22:31 BlueOceans 阅读(698) 评论(0) 推荐(0) 编辑
摘要: 1. PyTorch 的 hook 及其在 Grad-CAM 中的应用 https://bbs.cvmart.net/topics/1532?from=groupmessage&isappinstalled=0 grad-cam原理:利用logit输出值反向求取对应特征层的梯度,并把每层特征的梯度取 阅读全文
posted @ 2020-12-19 21:42 BlueOceans 阅读(86) 评论(0) 推荐(0) 编辑
摘要: 一些sample strategy实现: https://github.com/ej0cl6/deep-active-learning modAL https://github.com/modAL-python/modAL 阅读全文
posted @ 2020-11-13 17:47 BlueOceans 阅读(170) 评论(0) 推荐(0) 编辑
摘要: 安装版本v2.0+ 1. pycocotools错误 安装mmdetection forked的版本 # Install cocoapi pip install "git+https://github.com/open-mmlab/cocoapi.git#subdirectory=pycocotoo 阅读全文
posted @ 2020-09-11 19:57 BlueOceans 阅读(594) 评论(0) 推荐(0) 编辑
摘要: pip install -e git+https://github.com/ncullen93/torchsample.git#egg=torchsample pip install visdom pip install nibabel pip install h5py # this will be 阅读全文
posted @ 2020-09-11 19:52 BlueOceans 阅读(726) 评论(0) 推荐(0) 编辑
摘要: 这个问题,网上的解决方案大多数都是apt-get安装libSM,但是由于我这里不方便使用包安装,所以发现可以使用pip install opencv-python-headless 安装无需图形依赖库的opencv。 阅读全文
posted @ 2020-05-21 12:44 BlueOceans 阅读(284) 评论(0) 推荐(0) 编辑
摘要: 问题:UnicodeDecodeError: 'utf-8' codec can't decode byte 0xcd 原因:文件里面存在非'utf-8'编码的字符,比如其他平台上写入的中文字符 解决:尝试其他解码格式 import codecs with codecs.open(fname, 'r 阅读全文
posted @ 2020-04-17 12:16 BlueOceans 阅读(1109) 评论(0) 推荐(0) 编辑