ValueError: numpy.ndarray size changed, may indicate binary incompatibility
Pytorch报错: [crayon-680b93bd8a640642054499/] 解决方法: 升级numpy: pip uninstall numpy pip install numpy==1.20.1 本文最后更新于2021年5月2...
Pytorch报错: [crayon-680b93bd8a640642054499/] 解决方法: 升级numpy: pip uninstall numpy pip install numpy==1.20.1 本文最后更新于2021年5月2...
使用Matlab的时候提示: [crayon-680b93bd8b432152264070/] csv文件命名就有这个名字,但是始终无法读取,MOS倒是正常读取,于是在MATLAB中打开csv文件查看,发现问题: 原来name是乱码,确实无...
[crayon-680b93bd8bda8613193289/] 解决方法(注意文件路径): vi ~/anaconda3/envs/环境名/lib/python3.7/site-packages/mmcv-0.2.13-py3.7-lin...
使用mmdet的时候遇到问题:RuntimeError: Expected object of scalar type Byte but got scalar type Bool for argument #2 'other' in cal...
今天用h5py读mat文件的时候报错: OSError: Unable to open file (file signature not found) 之前我们读mat文件都是用scipy.io,但是后来MATLAB升级之后,就得用h5py...
使用Pandas读取csv文件的时候,每次一保存就会自动生成一列Unnamed: 0 Unnamed: 0.1 Unnamed: 0.1.1 Unnamed: 0.1.1.1,甚是烦人: 解决方法如下: 在save的时候,把index设为f...
Python2.7安装Pandas报错: Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-juzWZl/pandas/ [crayo...
detectron2遇到问题: [crayon-680b93bd8eaf3947932231/] 解决方法: vi detectron2/engine/launch.py 修改 if world_size > 1: 为 if worl...
detectron2使用自定义数据集进行训练的时候,提示: ValueError: tuple.index(x): x not in tuple [crayon-680b93bd8f6d2491174362/] 原因是数据类别不一致,修改:...
运行SSD的时候会出现这个错误:AssertionError: classification scores become infinite or NaN 经过检查发现,是学习率的问题,只需要调低学习率即可。 本文最后更新于2021年1月26...