摘要: 如何对caffe的网络模型进行可视化? 一、安装netron 1.windows版本: 下载可执行文件或在终端运行: winget install netron 2.Linux版本: 运行:snap install netron 启动:netron Netron不仅支持Caffe(caffemode 阅读全文
posted @ 2021-04-20 23:54 jimchen1218 阅读(196) 评论(0) 推荐(0) 编辑
摘要: https://developer.nvidia.com/zh-cn/cuda-gpus 阅读全文
posted @ 2021-04-11 17:59 jimchen1218 阅读(371) 评论(0) 推荐(0) 编辑
摘要: sudo apt install nfs-common sudo mkdir -p /nfsshare/PC_share sudo vim /etc/fstab 10.133.167.8:/finfs/autopilot/PC_share /nfsshare nfs vers=3,timeo=600 阅读全文
posted @ 2021-04-08 08:15 jimchen1218 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 批量拷贝文件:batchcopy.py def batchcopyimgs(dir_orig, dir_desc, file_type): cwd = os.getcwd() path_orig = os.path.join(cwd, dir_orig) path_desc = os.path.jo 阅读全文
posted @ 2021-03-03 23:42 jimchen1218 阅读(296) 评论(0) 推荐(0) 编辑
摘要: GPU计算力分析 https://blog.csdn.net/iefenghao/article/details/97956440?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-1.e 阅读全文
posted @ 2021-02-26 15:09 jimchen1218 阅读(3363) 评论(0) 推荐(0) 编辑
摘要: 输入下条命令,查看你的显卡驱动所使用的内核版本 cat /proc/driver/nvidia/version 输入下条命令,查看电脑驱动 cat /var/log/dpkg.log | grep nvidia 输入下条命令,查看电脑所有驱动 sudo dpkg --list | grep nvid 阅读全文
posted @ 2021-02-26 14:58 jimchen1218 阅读(1967) 评论(0) 推荐(0) 编辑
摘要: 问题:Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running? docker解决docker与守护进程间的通讯问题cannot connect :cannot c 阅读全文
posted @ 2021-02-26 13:04 jimchen1218 阅读(1731) 评论(0) 推荐(0) 编辑
摘要: Settings->Sharing 中没有"remote desktop" 解决方式,需要重启或重新登录: $sudo apt update && sudo apt install -y vino $sudo reboot 如果还是不行,可能是xrdp服务异常了,需要重启下 sudo service 阅读全文
posted @ 2021-02-21 11:47 jimchen1218 阅读(1087) 评论(0) 推荐(0) 编辑
摘要: U盘启动盘制作并安装 阅读全文
posted @ 2021-02-21 10:21 jimchen1218 阅读(4720) 评论(0) 推荐(0) 编辑
摘要: 当注册码失效时,会出现以下界面 解决方法如下: 1.找到bcompare所在位置 sudo find /home/ -name "*bcompare">>>/home/igs/.config/bcompare 2.进入目录/home/igs/.config/,删除整个文件夹:bcompare rm 阅读全文
posted @ 2021-02-16 12:14 jimchen1218 阅读(5115) 评论(1) 推荐(0) 编辑
摘要: 本文主要介绍如何快速搭建一套ubuntu18.04远程桌面环境,并可以同时使用windows客户端或ubuntu客户端来进行访问。 一、服务器端 安装步骤如下: 1、设置ubuntu18.04允许进行远程控制 进入系统,首选项,桌面共享或直接搜索桌面共享,将允许其他人查看桌面这一项勾上,设置远程密码 阅读全文
posted @ 2021-02-09 10:01 jimchen1218 阅读(1414) 评论(0) 推荐(0) 编辑
摘要: 背景: pytorch从1.6版本开始,已经内置了torch.cuda.amp,采用自动混合精度训练就不需要加载第三方NVIDIA的apex库了。本文主要从三个方面来介绍AMP: 一.什么是AMP? 二.为什么要使用AMP? 三.如何使用AMP? 四. 注意事项 正文: 一.什么是AMP? 默认情况 阅读全文
posted @ 2021-01-22 19:51 jimchen1218 阅读(27617) 评论(1) 推荐(8) 编辑
摘要: 搭建一套基于docker的开发训练环境 步骤如下: O、安装ubuntu18.04及NVidia驱动,CUDA,CUDNN 1.安装Ubuntu系统 制作ubuntu18.04系统盘 安装ubuntu过程,比较简单,可参考该链接:https://blog.csdn.net/baidu_3660242 阅读全文
posted @ 2021-01-15 10:40 jimchen1218 阅读(4962) 评论(1) 推荐(1) 编辑
摘要: ubuntu版本16.04 一、清华源 # 清华大学源 deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial main restricted universe multiverse deb http://mirrors.tuna.tsinghu 阅读全文
posted @ 2021-01-11 08:46 jimchen1218 阅读(8165) 评论(0) 推荐(0) 编辑
摘要: 一、安装依赖包: sudo apt-get install libprotobuf-dev libleveldb-dev libsnappy-dev libopencv-dev libhdf5-serial-dev protobuf-compiler sudo apt-get install --n 阅读全文
posted @ 2021-01-10 12:53 jimchen1218 阅读(417) 评论(0) 推荐(0) 编辑