- 博客(23)
- 收藏
- 关注
原创 DataLoader worker (pid 182598) is killed by signal: Bus error. It is possible that dataloader‘s work
在Dataloader中将num_worker设置为0。意味着每一轮迭代时,dataloader不再有自主加载数据到RAM这一步骤(因为没有worker了),而是在RAM中找batch,找不到时再加载相应的batch。在起Docker容器时,设置 --ipc=host 或 --shm-size 或者。
2023-04-10 16:54:02
567
原创 CMake error with “CUDA_cublas_device_LIBRARY“
I also got the problem when I compiled caffe with the latest CUDA 10.0, and after upgrading CMake from 3.12.1 to 3.12.2 it’s done
2023-03-15 00:53:47
214
原创 cannot import name ‘_registerMatType‘ from ‘cv2.cv2‘
pip install opencv-python-headless==4.5.2.52
2023-03-15 00:50:48
290
原创 Fit failing with RuntimeError: Could not infer dtype of numpy.int64
could not infer dtype of numpy
2023-02-27 12:08:48
295
原创 At least one invalid signature was encountered.
At least one invalid signature was encountered.
2023-02-21 14:52:51
1057
原创 ERROR: Unexpected bus error encountered in worker
DataLoader worker (pid xxx) is killed by signal: Bus error.
2023-02-21 14:46:59
386
原创 Fit failing with RuntimeError: Could not infer dtype of numpy.int64
could not infer dtype of numpy
2023-02-21 14:11:43
612
原创 ImportError: libGL.so.1: cannot open shared object file: No such file or directory
opencv缺少依赖
2023-02-21 14:05:43
122
原创 numpy取值报错:TypeError: iteration over a 0-d array
TypeError: iteration over a 0-d array
2023-02-01 17:21:52
1864
原创 docker中:libX11.so.6: cannot open shared object file: No such file or directory
libX11.so.6: cannot open shared object file: No such file or directory
2022-12-13 01:27:38
1503
原创 一招解决,vscode python debug 没有响应,无法进入到debug模式
准确地来讲,在用python3.6的环境时,无法使用debug模式,
2022-10-14 20:01:30
1678
原创 Ubuntu一键安装指南(含微信、ROS)
Ubuntu一键安装指南(含微信、ROS)一行代码解决Ubuntu下常用软件安装wget http://fishros.com/install -O fishros && . fishros
2022-05-07 21:16:01
592
原创 ubuntu美化--壁纸软件
Wonderwall是一个用于Unity和GNOME桌面环境的酷炫壁纸程序,可在ubuntu software中安装
2021-11-20 17:29:50
2163
原创 将python包的路径添加到sys.path(一劳永逸)
将python包的路径添加到sys.path(一劳永逸)在site-packages 文件中创建.pth文件,然后将路径填进去,每行一个路径/home/user/home/user/openvino
2021-11-17 22:07:41
2135
原创 2021-11-15
git submodule update --init --recursive 下载子项目超时失败解决方案:将主项目中.gitmodules文件中的子项目地址改为镜像地址,执行命令git submodule sync,git submodule update --init。即可完成子项目克隆参考:https://www.cnblogs.com/jason1990/p/15545221.html...
2021-11-15 16:06:29
149
原创 关于Python切片:双冒号的使用
关于Python切片:双冒号的使用#Python sequence slice addresses can be written as a[start:end:step] and any of start, stop or end can be dropped.#所以出现双冒号是省略了“end”的结果,默认为最后>>> a = numpy.arange(1,10)>>> aarray([1, 2, 3, 4, 5, 6, 7, 8, 9])>>&g
2021-09-22 12:59:51
1864
原创 关于VSCODE中自定义解析器版本与VSCODE控制台版本不一致的问题
关于VSCODE中自定义解析器版本与VSCODE控制台版本不一致的问题问题如下图所示:解决方案:点击VSCODE界面左下角的齿轮、Settings,搜索terminal.integrated.env.osx,打开文件进行修改,将"python": "C:\Users\NIUBILITY\.conda\envs\TF2.1\python.exe"部分替换为自己需要的解释器。...
2021-09-18 19:12:40
503
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人