博客
关于我
工程实践_LFFD模型训练过程疑难杂症debug
阅读量:537 次
发布时间:2019-03-08

本文共 2359 字,大约阅读时间需要 7 分钟。

1.MxNet版本的LFFD需要安装CUDA10.1版本和CuDNN

若不满足会出现如下问题:

安装的CUDA版本太低或没有安装:

raceback (most recent call last):  File "configuration_10_320_20L_5scales_v2.py", line 17, in 
import mxnet File "/usr/local/lib/python3.6/dist-packages/mxnet/__init__.py", line 24, in
from .context import Context, current_context, cpu, gpu, cpu_pinned File "/usr/local/lib/python3.6/dist-packages/mxnet/context.py", line 24, in
from .base import classproperty, with_metaclass, _MXClassPropertyMetaClass File "/usr/local/lib/python3.6/dist-packages/mxnet/base.py", line 213, in
_LIB = _load_lib() File "/usr/local/lib/python3.6/dist-packages/mxnet/base.py", line 204, in _load_lib lib = ctypes.CDLL(lib_path[0], ctypes.RTLD_LOCAL) File "/usr/lib/python3.6/ctypes/__init__.py", line 348, in __init__ self._handle = _dlopen(self._name, mode)OSError: libcudart.so.10.1: cannot open shared object file: No such file or directory

没有安装CuDNN:

terminate called after throwing an instance of 'dmlc::Error'  what():  [20:48:36] ../include/mshadow/./stream_gpu-inl.h:173: Check failed: err == CUDNN_STATUS_SUCCESS (4 vs. 0) : CUDNN_STATUS_INTERNAL_ERRORAborted (core dumped)

2.正确使用Python和正确安装MxNet版本

若已经正确安装CUDA和CUDNN,仍然出现:

terminate called after throwing an instance of 'dmlc::Error'  what():  [20:48:36] ../include/mshadow/./stream_gpu-inl.h:173: Check failed: err == CUDNN_STATUS_SUCCESS (4 vs. 0) : CUDNN_STATUS_INTERNAL_ERRORAborted (core dumped)

有两种可能:首先查看MxNet版本是否正确,再在configuration_10_560_25L_8scales_v1.py代码中将如下代码注释:

# add mxnet python path to path env if needmxnet_python_path = '/home/heyonghao/libs/incubator-mxnet/python'sys.path.append(mxnet_python_path)

我们只需要使用我们本地默认的Python就行。

3.正确安装OpenCV

如出现如下问题:

During handling of the above exception, another exception occurred:Traceback (most recent call last):  File "_ctypes/callbacks.c", line 234, in 'calling callback function'  File "/root/work/mxnet/python/mxnet/operator.py", line 1052, in backward_entry    print('Error in CustomOp.backward: %s' % traceback.format_exc())UnicodeEncodeError: 'ascii' codec can't encode characters in position 369-376: ordinal not in range(128)

说明OpenCV版本没有正确安装,删除旧版本之后安装如下版本:

pip install opencv-python==3.4.5.20

4.正确设置batch_size

遇到如下问题,很可能是batch_size设置的太大:

MXNetError: cudaMalloc retry failed: out of memory

可以设置batch_size=16

转载地址:http://gsbiz.baihongyu.com/

你可能感兴趣的文章
mysql 1264_关于mysql 出现 1264 Out of range value for column 错误的解决办法
查看>>
mysql 1593_Linux高可用(HA)之MySQL主从复制中出现1593错误码的低级错误
查看>>
mysql 5.6 修改端口_mysql5.6.24怎么修改端口号
查看>>
MySQL 8.0 恢复孤立文件每表ibd文件
查看>>
MySQL 8.0开始Group by不再排序
查看>>
mysql ansi nulls_SET ANSI_NULLS ON SET QUOTED_IDENTIFIER ON 什么意思
查看>>
multi swiper bug solution
查看>>
MySQL Binlog 日志监听与 Spring 集成实战
查看>>
MySQL binlog三种模式
查看>>
multi-angle cosine and sines
查看>>
Mysql Can't connect to MySQL server
查看>>
mysql case when 乱码_Mysql CASE WHEN 用法
查看>>
Multicast1
查看>>
mysql client library_MySQL数据库之zabbix3.x安装出现“configure: error: Not found mysqlclient library”的解决办法...
查看>>
MySQL Cluster 7.0.36 发布
查看>>
Multimodal Unsupervised Image-to-Image Translation多通道无监督图像翻译
查看>>
MySQL Cluster与MGR集群实战
查看>>
multipart/form-data与application/octet-stream的区别、application/x-www-form-urlencoded
查看>>
mysql cmake 报错,MySQL云服务器应用及cmake报错解决办法
查看>>
Multiple websites on single instance of IIS
查看>>