- 博客(58)
- 资源 (1)
- 收藏
- 关注
原创 jetpack-sdk
jetpack-sdk 安装sdk managerstart run sdk managerlogin nvidia accountselect target hardware & target operating systemselect correction & ip & username & passwdfinishedsdk managerdownload sdk manager & dpkg sdk managerstart run sdk ma
2022-01-28 19:37:10
3988
原创 openvino学习笔记
openvino简介流程(使用 OpenVINO 部署 SSD_MobileNet_V2)Mac1.安装openvino(和平时应用程序安装一样)2.设置环境变量3.配置模型优化器4.准备提前训练好的模型参数5.模型优化器(模型转换(优化策略需要好好学习一下)6.推断windowlinux简介cpu推理加速,不能做模型的训练流程(使用 OpenVINO 部署 SSD_MobileNet_V2)openvino下载链接Mac1.安装openvino(和平时应用程序安装一样)注意:安装前必须安装
2020-10-25 13:46:25
1307
原创 mac上安装python3
install python3if you haved install homebrew, then type:export PATH="/usr/local/opt/python/libexec/bin:$PATH"brew install python3else:ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"brew install python3
2020-07-05 10:51:57
353
原创 virtualenv 环境迁移
pip freeze > requirements.txtpip download -r requirements.txt -d packagesvirtualenv --no-site-packages venvpip install --no-index --find-links=packages -r requirements.txt
2020-06-22 11:05:13
461
原创 yolo v3 (pytorch)模型训练笔记
├── annotations # 标注信息(分为train_xml和val_xml)├── datasets # 数据集和label(分为train_images/val_images/train_labels/val_labels)├── ptj.data #├── ptj.names # 类别名├── ptj_test # 做测试用的图片集├── result_output # 做测试结果存储的├── train.txt # 训练集路径├── val.shapes #
2020-06-22 10:58:13
310
原创 ubuntu18.04安装显卡最新驱动
kuochung@05262020:~$ nvidia-smiCommand 'nvidia-smi' not found, but can be installed with:sudo apt install nvidia-340 sudo apt install nvidia-utils-390kuochung@05262020:~$ ubuntu-drivers devices== /sys/devices/pci0000:00/0000:00:01.0/0000:01:00
2020-05-29 20:47:01
1165
原创 ubuntu18软件安装指南
软件名vscodegoogleapt源vscodekuochung@kuochung--20200523:~$ sudo snap install --classic code[sudo] kuochung 的密码: code 5763d909 from Visual Studio Code (vscode✓) installedgoogle官网下载.deb文件,点击右键安装。apt源
2020-05-27 20:28:14
380
原创 pyplot(matplotlib)简单易懂解释
一、用figure函数和subplot函数分别创建主窗口与子图from skimage import dataimport matplotlib.pyplot as pltimg=data.astronaut()plt.figure(num='astronaut',figsize=(8,8)) #创建一个名为astronaut的窗口,并设置大小 plt.subplot(2,2,1) ...
2020-04-18 15:09:01
813
原创 在centos7上使用mysql
wget https://dev.mysql.com/get/mysql57-community-release-el7-9.noarch.rpmsudo rpm -ivh mysql57-community-release-el7-9.noarch.rpm cd /etc/yum.repos.d/sudo yum install mysql-server已安装: mysql-c...
2020-04-14 17:51:32
202
原创 Git/GitLab/GitHub总结
在我看来,这三者的关系是,Git是钥匙,GitHub是公共场所,GitLab是自家房子。GitLab1.install gitlabyum -y install policycoreutils openssh-server openssh-clients postfixsystemctl enable postfix && systemctl start postfixc...
2020-03-05 18:58:10
213
1
原创 centos7软件安装
rdesktop(远程桌面协议 (RDP) 客户端)(连接Windows Server实例)sudo rpm --import http://li.nux.ro/download/nux/RPM-GPG-KEY-nux.ro sudo rpm -Uvh http://li.nux.ro/download/nux/dextop/el7/x86_64/nux-dextop-release-0-...
2020-02-25 16:31:52
161
原创 Linux命令,未完待续。。。
rpm查看系统安装软件,通过‘|’(管道符工具)连接rpm的输出和grep的输入,grep作为查询工具,将vmware作为关键字进行查询(base) [260254@w26-260254 ~]$ rpm -qa | grep vmwarexorg-x11-drv-vmware-13.2.1-1.el7.1.x86_64软件包安装路径及配置文件(base) [260254@w26-2...
2019-11-23 09:59:57
475
原创 pyqt5学习整理,后续更新。。。
Preparationvirtualenv venvpip install PyQt5-tools # (pip install pyqt5(linux))Settings->Tools->+QtDesigner(Program:…/Scripts/designer.exe)Settings->Tools->+PyUIC(Program:…/Scripts/p...
2019-09-22 10:24:59
264
1
原创 cmd命令
dir:查看当前路径的文件(夹)cls:清除记录explorer:资源管理器notepad:记事本calc:计算器d: :切换到d盘rmdir /s/q 文件夹名:删除文件夹(包括夹内的文件或文件夹(s)),且不提示(q)rd 文件夹名:删除空文件夹...
2019-08-15 11:45:04
365
原创 docker官方入门实战
zhong@slave2:~/pycharmProj/testdoc$ sudo docker swarm initError response from daemon: could not choose an IP address to advertise since this system has multiple addresses on different interfaces (172...
2019-08-06 15:36:31
347
原创 flask(1.0.2)问题汇总
if g.user is not None and g.user.is_authenticated(): TypeError: 'bool' object is not callable答:is_authenticated为属性,故去掉括号List item
2019-07-27 15:48:06
322
原创 Vi&Vim
HJKL:左下上右i: 在光标前插入字符a: 在光标后插入字符x: 删除当前光标所在字符dd: 删除光标所在行,并存到剪贴板里cw: 删除从光标所在位置到行尾的字符,并存到剪贴板里yy: 拷贝当前行p: 粘贴剪贴板(在光标之后插入)P: 在光标之前插入o: 在当前行后插入一行O: 在当前行前插入一行0:光标移动到所在行头shift+$: 光标移动到所在行尾shift+^:...
2019-07-05 09:52:45
465
4
原创 串口/U(A/S)RT(RS232/RS485/RS422协议等)
串口就是URT。UART:universal asynchronous receiver and transmitter通用异步收发器;USART:universal synchronous asynchronous receiver and transmitter通用同步异步收发器。串口的通信协议一般是RS232。主要用在工业控制、路由器调试、串口通信。参考文章参考文章...
2019-06-26 11:05:04
2523
转载 Python错误类型及各自继承关系
BaseException # 父类+-- SystemExit+-- KeyboardInterrupt+-- GeneratorExit+-- Exception # 常用 +-- StopIteration +-- StopAsyncIteration +-- ArithmeticError | +-- FloatingPointError | +...
2019-06-14 20:00:25
163
原创 pinta(centos7画图软件)
(venv_py3m) [260254@w26-260254 py3m]$ yum search pinta已加载插件:fastestmirror, langpacksLoading mirror speeds from cached hostfile * base: mirrors.aliyun.com * epel: mirrors.aliyun.com * extras: mirr...
2019-05-30 11:31:22
1422
原创 python3常用库(pypi)
cv2 (Unofficial pre-built OpenCV packages for Python.)pip install opencv-pythonpip install opencv-contrib-pythonimport cv2numpy (NumPy is the fundamental package for array computing with Python.)...
2019-05-30 10:32:22
3955
原创 工作笔记:Temporal Segment Networks(TSN)
文章&代码:http://yjxiong.me/others/tsn/docker pull bitxiong/tsnnvidia-docker run --name tsn -v /home/zhong/pycharmProj/tsn:/root/tsn/ -it bitxiong/tsn:latest bashroot@9ebb9c6974d6:/app# bash build...
2019-05-14 16:57:57
1430
7
原创 sudo: 无法解析主机/su认证失败
sudo: 无法解析主机:kuochung-20190412kuochung@kuochung-20190412:~$ vim /etc/hosts
2019-05-04 15:24:34
278
原创 /usr/libexec/urlgrabber-ext-down
Q: Downloading packages: File "/usr/libexec/urlgrabber-ext-down", line 28 except OSError, e: ^ SyntaxError: invalid syntaxA:修改文件urlgrabber-ext-down,将python修...
2019-04-30 10:51:17
1820
原创 ubuntu16.04安装显卡最新驱动
更新内核地址sudo dpkg -i *.debsudo reboot`下载显卡驱动addresssudo chmod a+x NVIDIA-Linux-x86_64-418.56.run # 赋予权限禁用nouveau等相关的驱动包sudo gedit /etc/modprobe.d/blacklist.confblacklist rivafbblacklis...
2019-04-13 14:57:46
1035
原创 ubuntu16系统增加win10系统的开机启动项
1、找到win10系统引导盘的uuid按e选择进入grub2、修改grub.cfg文件增加的内容为:menuentry 'window10' {insmod ntfsset root=(hd0,msdos1)search –no-floppy –fs-uuid –set 021A51761A516825chainloader +1}...
2019-04-12 22:17:31
1045
原创 ssh
[260254@w26-260254 ~]$ ssh zhong@172.28.171.16zhong@172.28.171.16's password: Welcome to Ubuntu 16.04.5 LTS (GNU/Linux 4.15.0-34-generic x86_64) * Documentation: https://help.ubuntu.com * Manage...
2019-03-27 16:48:20
199
原创 centos7升级gcc7.1.0(libstdc++.so.6: version `CXXABI_1.3.8' not found)
[260254@w26-260254 bin]$ source activate(venv) [260254@w26-260254 bin]$ pythonPython 3.7.2 (default, Mar 25 2019, 11:03:20) [GCC 4.8.5 20150623 (Red Hat 4.8.5-36)] on linuxType "help", "copyright"...
2019-03-25 16:11:02
5524
2
原创 ubuntu18安装python3-pip opencv-python
root@2fce31d9be57:/# apt-get install python3-dev aptitude python3-piproot@2fce31d9be57:/# pip3 --versionpip 9.0.1 from /usr/lib/python3/dist-packages (python 3.6)root@2fce31d9be57:/# apt-get ins...
2019-03-23 17:26:46
2547
1
原创 linux filesystem
[260254@w26-260254 ~]$ df文件系统 1K-块 已用 可用 已用% 挂载点/dev/mapper/centos-root 52403200 9483000 42920200 19% /devtmpfs 16337272 0 16337272...
2019-03-22 11:41:29
3956
原创 yum
[260254@w26-260254 ~]$ rpm -ql zip-3.0-11.el7.x86_64/usr/bin/zip/usr/bin/zipcloak/usr/bin/zipnote/usr/bin/zipsplityum源配置[root@w26-260254 yum.repos.d]# mv CentOS-Base.repo CentOS-Base.repo.bak[...
2019-03-15 11:28:52
160
原创 locale
apt-get install locales(python36) root@7d7740a6ef26:~/ActivityNet/Crawler# localeLANG=LANGUAGE=LC_CTYPE="zh_CN.UTF-8"LC_NUMERIC="zh_CN.UTF-8"LC_TIME="zh_CN.UTF-8"LC_COLLATE="zh_CN
2019-03-11 19:38:04
650
原创 Pycharm使用docker容器内的环境开发
1.将自己搭建的环境容器commit成image[260254@localhost ~]$docker commit 4ef9236a7415 c3dtf:v1docker commit 命令详解2.设置Pycharm3.测试一波我在之前的容器里install了python2.7.12,还pip install 了opencv-python和tensorflow那么看import他...
2019-03-01 15:37:16
8618
转载 TensorFlow 1.13.0-rc最新版本说明
在TensorFlow 1.13.0-rc0中,TensorFlow Lite已从contrib转移到core。这意味着Python模块现在在tf.lite下,源代码现在在tensorflow/lite下而不是tensorflow/contrib/lite。TensorFlow GPU二进制文件现已针对CUDA 10构建。NCCL已经转移到TensorFlow 1.13.0-rc0的核心。行...
2019-02-25 12:36:44
6094
原创 docker下最新搭建python3/cuda10(cudnn7.4)/tensorflow
1.create containerdocker run --name tf12 -it ubuntu /bin/bash2.install anaconda[260254@localhost download]$ sudo docker cp Anaconda3-5.3.1-Linux-x86_64.sh 0d5:/rootroot@0d580c903134:/# bash Anaco...
2019-02-19 17:30:32
2605
原创 centos7终端命令查看图片
[260254@localhost 图片]$ display 2019-02-16\ 08-58-57\ 的屏幕截图.png [260254@localhost 图片]$ eog 2019-02-16\ 08-58-57\ 的屏幕截图.png [260254@localhost 图片]$ xdg-open 2019-02-16\ 08-58-57\ 的屏幕截图.png This tool h...
2019-02-16 09:26:30
19418
原创 vlc安装
wget http://li.nux.ro/download/nux/dextop/el7/x86_64/nux-dextop-release-0-5.el7.nux.noarch.rpmsudo rpm -ivh nux-dextop-release-0-5.el7.nux.noarch.rpmsudo yum install vlc
2019-02-15 09:39:34
1260
原创 Anaconda3安装及使用技巧
下载地址:清华大学开源软件镜像站Anoconda官网设置国内镜像:conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/conda config --set show_channel_urls yesvim ~/.condarc常用命令:conda list # 查看...
2019-02-12 19:15:19
459
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人