
调试错误
clbobo
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
2021-03-30
pip国内源转载 2021-03-30 23:31:24 · 136 阅读 · 0 评论 -
检查Tensorflow-gpu和pytorch-gpu是否可用
import tensorflow as tfimport torchprint(tf.test.is_gpu_available())print(torch.cuda.is_available())原创 2020-01-11 13:57:33 · 615 阅读 · 0 评论 -
安装NVIDIA驱动 CUDA CUDNN
1 安装NVIDIA驱动先进入下载文件夹chmod +x NVIDIA-Linux-x86_64-430.09.run #目的是设置权限sudo ./NVIDIA-Linux-x86_64-430.09.run -no-x-check -no-nouveau-check -no-opengl-files2 安装CUDA...原创 2020-01-11 13:50:47 · 1035 阅读 · 0 评论 -
Failed to get convolution algorithm. This is probably because cuDNN failed to initialize解决办法
TensorflowTensorflow:config = tf.ConfigProto()config.gpu_options.allow_growth = Truewith tf.Session(config=config) as session:Kerasconfig = tf.ConfigProto()config.gpu_options.allow_growth = Tr...原创 2019-12-19 09:52:10 · 203 阅读 · 0 评论 -
Opencv调试错误
1 没有安装opencv-contrib-python会报错原创 2019-10-06 16:01:57 · 334 阅读 · 0 评论 -
调用Tensorflow时显示GPU错误
Could not create cudnn handle: CUDNN_STATUS_ALLOC_FAILED解决方法: ~~~~~~~~原创 2019-10-06 16:06:29 · 334 阅读 · 0 评论