自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(20)
  • 收藏
  • 关注

转载 查看tensorflow版本

进入python环境import tensorflow as tftf.__version__转载于:https://www.cnblogs.com/elitphil/p/11587461.html

2019-09-25 21:10:00 222

转载 ubuntu16.04跑通Mask R-CNN Demo

1. 下载源码:git clone https://github.com/matterport/Mask_RCNN2. 安装依赖项(其实就是程序的运行环境)我是用conda新建的虚拟环境。(1)conda create -n Maskrcnn python=3.4 pip(2) source activate Maskrcnn(激活虚拟环境)(3) cd ...

2019-09-24 20:59:00 1090

转载 h5py报错:FutureWarning: Conversion of the second argument of issubdtype from `float` to `np.floating` ...

导入h5py的时候,报错:/home/harris/anaconda3/lib/python3.6/site-packages/h5py/__init__.py:36: FutureWarning: Conversion of the second argument of issubdtype from `float` to `np.floating` is deprecated. ...

2019-09-24 19:58:00 181

转载 ubuntu16.04 下anaconda3安装教程

贴一个成功的连接:https://blog.csdn.net/u012243626/article/details/82469174转载于:https://www.cnblogs.com/elitphil/p/11576380.html

2019-09-24 09:08:00 439

转载 conda基本知识

卸载anaconda:rm -rf anaconda3 (anaconda文件夹名称)conda删除虚拟环境在终端执行:conda remove -n your_env_name(虚拟环境名称) --all即可。转载于:https://www.cnblogs.com/elitphil/p/11575172.html...

2019-09-23 21:55:00 207

转载 caffe学习三:使用Faster RCNN训练自己的数据

本文假设你已经完成了安装,并可以运行demo.py不会安装且用PASCAL VOC数据集的请看另来两篇博客。caffe学习一:ubuntu16.04下跑Faster R-CNN demo (基于caffe). (亲测有效,记录经历两天的吐血经历)https://www.cnblogs.com/elitphil/p/11527732.htmlcaffe学习二:py-fast...

2019-09-21 10:52:00 232

转载 labelImg

Python 3 + Qt5 (Recommended)sudo apt-get install pyqt5-dev-toolssudo pip3 install -r requirements/requirements-linux-python3.txtmake qt5py3python3 labelImg.pypython3 labelImg.py [IMAG...

2019-09-20 21:21:00 133

转载 caffe学习二:py-faster-rcnn配置运行faster_rcnn_end2end-VGG_CNN_M_1024 (Ubuntu16.04)

本文的主要目的是学习记录。原文连接:https://blog.csdn.net/samylee/article/details/51099508本博客中我将对py-faster-rcnn配置运行fastr_rcnn_end2end-VGG_CNN_M_1024作出具体操作说明。在此记录。第一部分:下载数据test data and VOCdevkit在终端分别...

2019-09-19 10:40:00 142

转载 py-faster-rcnn的常见错误

在py-faster-rcnn配置运行faster-rcnn-end2end-VGG-CNN_M_1024的过程中,执行命令:./experiments/scripts/faster_rcnn_end2end.sh 0 VGG_CNN_M_1024 pascal_voc \ --set EXP_DIR foobar RNG_SEED 42 TRAIN.SCALES "[400, 50...

2019-09-19 10:05:00 128

转载 pip版本降级

使用命令:python -mpip install pip==8.1.1其中, -m参数的解释run library module as a script (terminates option list)将库中的python模块用作脚本去运行转载于:https://www.cnblogs.com/elitphil/p/11540324.html...

2019-09-18 10:51:00 3406

转载 基于LeNet的手写汉字识别(caffe)

我假设已经成功编译caffe,如果没有,请参考http://caffe.berkeleyvision.org/installation.html在本教程中,我假设你的caffe安装目录是CAFFE_ROOT一.数据准备首先,你需要从MNIST网站下载mnist数据,并转换数据格式。可以通过执行以下命令来实现cd $CAFFE_ROOT./data/mnist/get_...

2019-09-17 22:24:00 507

转载 python安装第三方包的安装路径, dist-packages和site-packages区别

简单来说如果是系统自带的python,会使用dist-packages目录如果你手动安装python,它会直接使用目录site-packages这允许你让两个安装隔离开来dist-packages:系统自带的pythonsite-packages:自己安装的python注意:本人所写的博文有可能来自其他博主的内容。在这里主要作为学习记录/笔记之...

2019-09-17 16:00:00 1449

转载 pip安装路径

pip show 模块名称即可查看pip安装的包所在路径。如numpy: pip show numpy转载于:https://www.cnblogs.com/elitphil/p/11534435.html

2019-09-17 15:50:00 2829

转载 caffe学习一:ubuntu16.04下跑Faster R-CNN demo (基于caffe). (亲测有效,记录经历两天的吐血经历)...

兜兜转转,兜兜转转;一次有一次,这次终于把Faster R-CNN 跑通了。重要提示1:在开始跑Faster R-CNN之前一定要搞清楚用的是Python2 还是Python3. 不然你会无限次陷入一下错误:from ._caffe import Net, SGDSolver, NesterovSolver, AdaGradSolver, \ImportError: d...

2019-09-16 15:54:00 256

转载 sudo apt-get install 、 pip install和conda install的对比

sudo apt-get install:apt-get可以用来安装软件、更新源,也可以用来更新自Ubuntu的典型依赖包。(sudo apt-get remove --purge 软件名称sudo apt-get autoremove --purge 软件名称可以用来卸载相对应的安装)pip install:pip: Pip installs Packa...

2019-09-16 15:09:00 1180

转载 The 10 Most Important Linux Commands/10个最经常使用的命令行

1. ls 命令:to show all of the major directiories filed under a given file system. for example: ls /applications--it will show the user all of the folders stored in the overall...

2019-09-16 14:23:00 96

转载 几条简单的安装指令

安装pip: sudo apt install python-pippip安装easydict: pip install easydict报错:[Caffe] ImportError: No module named google.protobuf.internal安装protobuf: sudo apt-get install python-protobuf...

2019-09-16 14:09:00 232

转载 setuptools的安装

Python 2.x: sudo apt-get install python-setuptools (python2.x版本执行此命令)Python 3.x: sudo apt-get install python3-setuptools (python3.x版本执行此命令)...

2019-09-16 11:39:00 588

转载 cython的安装

cython 在linux(ubuntu)下安装sudo apt-get install cython安装后 输入 cython 即可验证是否安装成功转载于:https://www.cnblogs.com/elitphil/p/11526455.html

2019-09-16 11:36:00 693

转载 ubuntu16.04查看opencv版本

查看opencv版本:pkg-config opencv --modversion转载于:https://www.cnblogs.com/elitphil/p/11526368.html

2019-09-16 11:21:00 2028

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除