上一页 1 2 3 4 5 6 ··· 27 下一页
摘要: 1. 首先安装换服务器上的Ubuntu系统,NVIDIA驱动和Docker环境 本文环境为: 服务器Ubuntu版本为16.04 NVIDIA驱动版本为10.2 Docker版本为20.10.7 参考网址: https://blog.csdn.net/qq_39638989/article/deta 阅读全文
posted @ 2022-11-09 12:15 盛夏夜 阅读(635) 评论(0) 推荐(0) 编辑
摘要: 1. conda换源 conda config --set show_channel_urls yes vim .condarc channels: - defaults show_channel_urls: true default_channels: - http://mirrors.aliyu 阅读全文
posted @ 2022-11-09 12:13 盛夏夜 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 1.先卸载可能存在的旧版本,并更新软件包 sudo apt-get remove docker docker-engine docker-ce docker.io sudo apt-get update 2.安装需要的依赖包 sudo apt install apt-transport-https 阅读全文
posted @ 2022-11-03 09:27 盛夏夜 阅读(195) 评论(0) 推荐(0) 编辑
摘要: 1. 环境配置 VMware Workstation Pro 16.2.4 Ubuntu 18.04.6 Pytorch 1.10.0 Caffe-cpu 1.0 Python 3.6 Opencv 3.2.0 2. 下载并安装虚拟机 下载地址:https://customerconnect.vmw 阅读全文
posted @ 2022-09-20 15:33 盛夏夜 阅读(3265) 评论(0) 推荐(0) 编辑
摘要: 1. 拿到的开发版中已经安装最小系统,连接串口开机,设置启动文件 # 配置IP地址 ifconfig eth0 172.16.96.151 netmask 255.255.248.0 route add default gw 172.16.100.1 # 启动telnet服务 telnetd # 启 阅读全文
posted @ 2022-09-05 08:57 盛夏夜 阅读(409) 评论(0) 推荐(0) 编辑
摘要: 1. 下载opencv4.6.0并解压 https://opencv.org/releases/ unzip opencv-4.6.0.zip cd opencv-4.6.0 2. 安装基础工具 sudo apt-get install build-essential sudo apt-get in 阅读全文
posted @ 2022-08-30 09:23 盛夏夜 阅读(420) 评论(0) 推荐(0) 编辑
摘要: 1. 解压交叉编译工具链arm-himix200-linux tar -zxvf arm-himix200-linux.tgz cd arm-himix200-linux 2. 进入root模式,安装交叉编译工具链 su root source ./arm-himix200-linux.instal 阅读全文
posted @ 2022-08-29 13:51 盛夏夜 阅读(249) 评论(0) 推荐(0) 编辑
摘要: 1. 下载并安装nfs服务器软件 https://pan.baidu.com/s/1y2R2aJyEExnCJ7FRqdaNdA 提取码:esdw 2. 修改安装目录下exports文件的共享目录和客户端的IP地址 c:\Program Files (x86)\nfsd\exports c:\Dee 阅读全文
posted @ 2022-08-29 10:53 盛夏夜 阅读(1082) 评论(0) 推荐(0) 编辑
摘要: 1. 拿到hi3516核心版后,首先通过串口登录,修改IP地址,启动自动生效 vi /etc/init.d/rcS ifconfig eth0 192.168.1.13 netmask 255.255.255.0 route add default gw 192.168.1.1 2. 添加DNS,访 阅读全文
posted @ 2022-08-25 16:52 盛夏夜 阅读(230) 评论(0) 推荐(0) 编辑
摘要: import os # 读取真实标签文件列表,不含文件后缀 path_A = './ground-truth' set_A = set (i.split('.')[0] for i in os.listdir(path_A)) print(path_A ,"files:", len(set_A)) 阅读全文
posted @ 2022-08-16 10:20 盛夏夜 阅读(80) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 27 下一页