当前位置: 首页 > news >正文

遵义网站建设哪家好网络广告推广是怎么做的

遵义网站建设哪家好,网络广告推广是怎么做的,网页设计师专业培训,管理培训公司编译py-faster-rcnn#xff0c;花费了好几天#xff0c;中间遇到好多问题#xff0c;今天终于成功编译。下面详述我的整个编译过程。 【注记#xff1a;】其实下面的依赖库可以安装在统一的一个本地目录下#xff0c;相关安装指南#xff0c;可以参考《深度学习#xf…编译py-faster-rcnn花费了好几天中间遇到好多问题今天终于成功编译。下面详述我的整个编译过程。 【注记】其实下面的依赖库可以安装在统一的一个本地目录下相关安装指南可以参考《深度学习21天实战caffe》的第5天那一章。 这也是我后来才知道的。 部分软件见百度云盘链接: https://pan.baidu.com/s/1kwucs_pDqM-5vN6NbVuLNg 密码: fk0v # 硬件情况 centos6.98块Titan xp显卡 [关于nvidia显卡的对比可以查看《nvidia显卡对比分析》] 软件情况 boost 1.41 关于boost的情况虽然caffe官网要求boost1.55但是似乎对于低版本的也没有出现什么问题如果要安装boost可以参考《centos 安装boost》切记要原封不动地安装如上说明去装否则有可能只装上头文件却没有动态库.就装在默认目录下即可。 一般安装好以后头文件在/usr/include/boostlib文件在/usr/lib64/boost 。 OpenBlas CUDA8.0 cudnn v6 如果没有安装可以自己装在home目录下可参考 cuda、cudnn相关问题链接 查看相应版本号 cuda 版本 cat /usr/local/cuda/version.txt cudnn 版本 cat /usr/local/cuda/include/cudnn.h | grep CUDNN_MAJOR -A 2 gloggflags 注意要先安装gflags再安装glog。安装后者时注意指定前者的路径如下 ./configure --prefix/home/caiyong.wang/bin/caffe_local_install/ CPPFLAGS-I/home/caiyong.wang/bin/caffe_local_install/include LDFLAGS-L/home/caiyong.wang/bin/caffe_local_install/lib leveldb 安装可以使用yum install sudo yum install leveldb-devel或者参考《levelDB的安装-Linux》 lmdb 使用pip安装: pip install lmdbsnappy 首先下载snappy-1.1.1,然后解压配置./configure --prefix/home/**/ 最后编译安装 make make install 以上关于依赖库的安装可以参考RHEL / Fedora / CentOS Installation 安装依赖库 anaconda2 首先安装anaconda2,安装方法很简单就是下载软件然后运行 bash Anaconda2-5.0.0.1-Linux-x86_64.sh,接着安装过程中需要指定安装路径和选择加入path环境变量填yes即可。重启后发现python变成anaconda的版本。 opencv-python 使用pip安装 pip install opencv-python 最新版为opencv3 安装后 import cv2 print cv2.__version__ 注意在caffe中不用麻烦地安装源码装opencv会很麻烦要装一堆依赖库而且很多需要sudo权限 请参考 linux 安装python-opencv 3. easydict pip install easydict使用上述命令即可安装成功。 4. protobuf 2.6.1 首先先确认系统是否有装protobuf 查看方法 $ protoc --version libprotoc 2.3.0如果没有显示则说明没有装另外我们期望装2.6.1(caffe-master使用的protobuf版本是2.5.0及以上),所以版本不符就需要重装。 注意要装两个probobuf一个是python的一个是系统的。而且最好安装2.6.1,比较稳定。 由于anaconda默认没有装protobuf所以可以使用pip安装指定版本的protobuf。 [python版本] pip install protobuf2.6.1 [系统] 从http://download.csdn.net/download/liangyihuai/9534593下载protobuf-2.6.1或从其他地方下载protobuf-2.6.1·.tar.gz。 认真阅读gitHub上给出的安装教程。 $./autogen.sh(在csdn下载的可以省略) $./configure --prefix/home/**/protobuf 自己的目录下 $ make $ make check $ make install编译成功后将export PATH/home/**/protobuf/bin:$PATH加入到环境变量中 输入 protoc --version命令如显示protobuf 2.6.1则安装成功。 $ protoc --version libprotoc 2.6.1最后进入caffe根目录修改Makefile.config在INCLUDE_DIRS后面加入/home//protobuf/include LIBRARY_DIRS 后面加入 /home//protobuf/lib。 【注意】 在向path中添加变量的时候我总结一个原则即如果系统的路径比如/usr/local/bin等就这样写 export PATH$PATH:/usr/local/bin or export PATH/usr/local/bin:$PATH如果是自己安装的路径就 export PATH/home/**/protobuf/bin:$PATH也就是一个在前一个在后的问题。之所以强调这个是因为有时候系统已经安装了某个软件如果你想覆盖它则在path中必须写在它的前面。因此对于自己安装的路径一般我们都想覆盖原来的软件所以写在path前面。而系统安装的软件只有一个写在前后都可以。我们可以查看echo $PATH 来看最后的path路径结果并在需要的时候在~/.bashrc中做相应地调整。一定要注意 对于含有两个安装位置的软件如果我们想先读某一个一定要注意在path的位置。 make check的结果 5. hdf5 由于前面安装过 anaconda 所以hdf5已经默认安装。只需要把/*/anaconda2/lib 加入~/.bashrc中即 export LD_LIBRARY_PATH/*/anaconda2/lib:$LD_LIBRARY_PATH便于搜索hdf5的lib,尤其是 libhdf5_hl.so.100 若在后面的编译中仍然找不到此lib的话只能在home目录下重新安装参考http://blog.csdn.net/xiamentingtao/article/details/78266153 6. 关于numpy的版本问题 根据py-faster-rcnn的要求 numpy1.7.1但是anaconda最新默认装的numpy的版本在1.13.1虽然符合要求但是https://github.com/rbgirshick/py-faster-rcnn/issues/480 ,最好numpy的版本为1.11.0我们可以使用如下命令降级 pip install -U numpy1.11.0下载py-faster-rcnn 克隆Faster R-CNN仓库 # Make sure to clone with --recursive git clone --recursive https://github.com/rbgirshick/py-faster-rcnn.git–recursive 是为了递归下载caffe-master 继续安装python依赖库 将上面的克隆的文件放在安装目录下这里我们用FRCN_ROOT指 py-faster-rcnn的路径也就是 进入根目录然后进入py-faster-rcnn/caffe-fast-rcnn/python中caffe-fast-rcnn/python/requirement.txt文件列出了pycaffe的所有依赖库要把requirements下的依赖都装一遍 Cython0.19.2 numpy1.7.1 scipy0.13.2 scikit-image0.9.3 matplotlib1.3.1 ipython3.0.0 h5py2.2.0 leveldb0.191 networkx1.8.1 nose1.3.0 pandas0.12.0 python-dateutil1.4,2 protobuf2.5.0 python-gflags2.0 pyyaml3.10 Pillow2.3.0 six1.1.0执行bash命令 $for req in $(cat requirements.txt); do pip install $req; done如果安装完成可以再运行一遍上述命令发现全部装好 运行pip list可以列出相应地版本号要注意与上面说的相符尤其是protobuf 2.6.1 到目前为止我们可以对照caffe 官网的install检测所有必须的依赖库。 合版本 根据《使用cuDNN5编译py-faster-rcnn错误cudnn.hpp(126): error: argument of type “int” is incompatible …》的要求去操作即可。 或者参考http://blog.csdn.net/u010733679/article/details/52221404 更新最新的cudnn支持。 编译Cython模块 cd $FRCN_ROOT/lib make如果出现问题参考《 编译py-faster-rcnn的问题汇总及解决方法》. 编译caffe pycaffe 正如caffe官网-install所说在编译前有两种方法可以配置build, 第一种就是常见的手动设置Makefile.我所采用的 cp Makefile.config.example Makefile.config # Adjust Makefile.config (for example, if using Anaconda Python, or if cuDNN is desired) make all make test make runtest make pycaffe另一种就是先用cmake(版本2.8.7)自动检测各依赖项位置生成Makefile.也可以自己设置。使用cmake-gui可能更容易些。 mkdir build cd build #编译CPU版本 #cmake -DCPU_ONLYON -DBLASOpen . #编译GPU版本 $cmake -DBLASOpen -DCUDA_NVCC_FLAGS--Wno-deprecated-gpu-targets .. make all make install make runtest make pycaffe下面给出我自己配置的Makefile.config文件 ## Refer to http://caffe.berkeleyvision.org/installation.html # Contributions simplifying and improving our build system are welcome!# cuDNN acceleration switch (uncomment to build with cuDNN).USE_CUDNN : 1# CPU-only switch (uncomment to build without GPU support). # CPU_ONLY : 1# uncomment to disable IO dependencies and corresponding data layersUSE_OPENCV : 0USE_LEVELDB : 1USE_LMDB : 1# uncomment to allow MDB_NOLOCK when reading LMDB files (only if necessary) # You should not set this flag if you will be reading LMDBs with any # possibility of simultaneous read and write # ALLOW_LMDB_NOLOCK : 1# Uncomment if youre using OpenCV 3 # OPENCV_VERSION : 3# To customize your choice of compiler, uncomment and set the following. # N.B. the default for Linux is g and the default for OSX is clang # CUSTOM_CXX : g# CUDA directory contains bin/ and lib/ directories that we need. CUDA_DIR : /usr/local/cuda # On Ubuntu 14.04, if cuda tools are installed via # sudo apt-get install nvidia-cuda-toolkit then use this instead: # CUDA_DIR : /usr# CUDA architecture setting: going with all of them. # For CUDA 6.0, comment the *_50 lines for compatibility. CUDA_ARCH : -gencode archcompute_20,codesm_20 \-gencode archcompute_20,codesm_21 \-gencode archcompute_30,codesm_30 \-gencode archcompute_35,codesm_35 \-gencode archcompute_50,codesm_50 \-gencode archcompute_50,codecompute_50# BLAS choice: # atlas for ATLAS (default) # mkl for MKL # open for OpenBlas BLAS : open # Custom (MKL/ATLAS/OpenBLAS) include and lib directories. # Leave commented to accept the defaults for your choice of BLAS # (which should work)! BLAS_INCLUDE : /opt/OpenBLAS/include BLAS_LIB : /opt/OpenBLAS/lib# Homebrew puts openblas in a directory that is not on the standard search path # BLAS_INCLUDE : $(shell brew --prefix openblas)/include # BLAS_LIB : $(shell brew --prefix openblas)/lib# This is required only if you will compile the matlab interface. # MATLAB directory should contain the mex binary in /bin. # MATLAB_DIR : /data1/caiyong.wang/bin/matlab # MATLAB_DIR : /Applications/MATLAB_R2012b.app# NOTE: this is required only if you will compile the python interface. # We need to be able to find Python.h and numpy/arrayobject.h. # PYTHON_INCLUDE : /usr/include/python2.7 \ # /usr/lib/python2.7/dist-packages/numpy/core/include # Anaconda Python distribution is quite popular. Include path: # Verify anaconda location, sometimes its in root.ANACONDA_HOME : /data1/caiyong.wang/bin/anaconda2PYTHON_INCLUDE : $(ANACONDA_HOME)/include \$(ANACONDA_HOME)/include/python2.7 \$(ANACONDA_HOME)/lib/python2.7/site-packages/numpy/core/include \# Uncomment to use Python 3 (default is Python 2) # PYTHON_LIBRARIES : boost_python3 python3.5m # PYTHON_INCLUDE : /usr/include/python3.5m \ # /usr/lib/python3.5/dist-packages/numpy/core/include# We need to be able to find libpythonX.X.so or .dylib. # PYTHON_LIB : /usr/libPYTHON_LIB : $(ANACONDA_HOME)/lib# Homebrew installs numpy in a non standard path (keg only) # PYTHON_INCLUDE $(dir $(shell python -c import numpy.core; print(numpy.core.__file__)))/include # PYTHON_LIB $(shell brew --prefix numpy)/lib# Uncomment to support layers written in Python (will link against Python libs)WITH_PYTHON_LAYER : 1# Whatever else you find you need goes here. INCLUDE_DIRS : $(PYTHON_INCLUDE) /usr/local/include /data1/caiyong.wang/bin/hdf5-1.10.1/hdf5/include /data1/caiyong.wang/bin/protobuf/include LIBRARY_DIRS : $(PYTHON_LIB) /usr/local/lib /usr/lib /data1/caiyong.wang/bin/hdf5-1.10.1/hdf5/lib /data1/caiyong.wang/bin/protobuf/lib# If Homebrew is installed at a non standard location (for example your home directory) and you use it for general dependencies INCLUDE_DIRS $(shell brew --prefix)/include LIBRARY_DIRS $(shell brew --prefix)/lib # Uncomment to use pkg-config to specify OpenCV library paths. # (Usually not necessary -- OpenCV libraries are normally installed in one of the above $LIBRARY_DIRS.) # USE_PKG_CONFIG : 1BUILD_DIR : build DISTRIBUTE_DIR : distribute# Uncomment for debugging. Does not work on OSX due to https://github.com/BVLC/caffe/issues/171 # DEBUG : 1# The ID of the GPU that make runtest will use to run unit tests. TEST_GPUID : 0# enable pretty build (comment to see full commands) Q ? 需要注意的是我禁掉了opencv并且 加入了一些额外的搜索路径 至于到底是否需要增加我也不清楚。也许不用添加也可以。你可以自己尝试。 下面再贴出我的~/.bashrc的内容 # .bashrc# Source global definitions if [ -f /etc/bashrc ]; then. /etc/bashrc fi# User specific aliases and functionsalias matlab/data1/caiyong.wang/bin/matlab/bin/matlab export PYTHONPATH/data1/caiyong.wang/program/faster_rcnn/py-faster-rcnn/caffe-fast-rcnn/python:$PYTHONPATHexport LD_LIBRARY_PATH/usr/local/cuda-8.0/lib64:$LD_LIBRARY_PATH# libglog export LD_LIBRARY_PATH/usr/local/lib/:$LD_LIBRARY_PATH# hdf5 (其实可以省略因为anaconda的lib含有而且在下面一句已经加上且加在了自安装的HDF5的前面所以实际上使用的仍然是anaconda的 版本如果不行就加上呗。) #export LD_LIBRARY_PATH/data1/caiyong.wang/bin/hdf5-1.10.1/hdf5/lib:$LD_LIBRARY_PATHexport LD_LIBRARY_PATH/data1/caiyong.wang/bin/anaconda2/lib:$LD_LIBRARY_PATHexport PATH/usr/local/cuda-8.0/bin:$PATH######## add protobuf lib path ######## ##(动态库搜索路径) 程序加载运行期间查找动态链接库时指定除了系统默认路径之外的其他路径 #export LD_LIBRARY_PATH/data1/caiyong.wang/bin/protobuf2/lib/:$LD_LIBRARY_PATH ##(静态库搜索路径) 程序编译期间查找动态链接库时指定查找共享库的路径 #export LIBRARY_PATH/data1/caiyong.wang/bin/protobuf2/lib/:$LIBRARY_PATH ##执行程序搜索路径 #export PATH/data1/caiyong.wang/bin/protobuf2/bin/:$PATH ##c程序头文件搜索路径 #export C_INCLUDE_PATH/data1/caiyong.wang/bin/protobuf2/include/:$C_INCLUDE_PATH ##c程序头文件搜索路径 #export CPLUS_INCLUDE_PATH/data1/caiyong.wang/bin/protobuf2/include/:$CPLUS_INCLUDE_PATH ##pkg-config 路径 #export PKG_CONFIG_PATH/data1/caiyong.wang/bin/protobuf2/lib/pkgconfig/ ####################################### #alias protoc/data1/caiyong.wang/bin/protobuf2/bin/protoc export PATH/data1/caiyong.wang/bin/protobuf/bin:$PATH export PATH/usr/local/bin:$PATH export LD_LIBRARY_PATH/data1/caiyong.wang/bin/protobuf/lib:$LD_LIBRARY_PATH# added by Anaconda2 installer export PATH/data1/caiyong.wang/bin/anaconda2/bin:$PATH一般情况下这样编译就可以通过。这里make runtest花费时间很多我用了近9个小时。如果不想花费这么长时间也可以不运行这个指令。 最后为了在python中可以载入caffe模块我们需要在bashrc设置PYTHONPATH。 export PYTHONPATH/*/py-faster-rcnn/caffe-fast-rcnn/python:$PYTHONPATH然后source ~/.bashrc生效。 最终查看python接口是否编译成功 进入python环境进行import操作 # pythonimport caffeprint caffe.__version__ 1.0.0如果没有提示错误则编译成功。 测试demo 下载预计算的R-CNN检测器 cd $FRCN_ROOT ./data/scripts/fetch_faster_rcnn_models.sh这个模型解压出来750M下载的话大概695M而且很慢。。 为了方便大家我把模型上传到了百度云 链接: https://pan.baidu.com/s/1eSKoVAi 密码: 59ga 注意下载后解压到data目录下。 2. 运行 cd $FRCN_ROOT ./tools/demo.py出现结果 共5个图片来源 [外链图片转存失败(img-Dv5lyU7I-1567741174724)(https://img-blog.csdn.net/20171019152755856?watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQveGlhbWVudGluZ3Rhbw/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA/dissolve/70/gravity/SouthEast)] 成功~~~ 最后说明 如果安装过程中还有问题可以参考http://blog.csdn.net/xiamentingtao/article/details/78266153 参考文献 rbgirshick/py-faster-rcnncuda8cudnn4 Faster R-CNN安装塈运行demo使用cuDNN5编译py-faster-rcnn错误cudnn.hpp(126): error: argument of type “int” is incompatible …Caffe-faster-rcnn demo测试caffe官网-installCaffe学习系列(13)数据可视化环境python接口)配置
http://www.zqtcl.cn/news/482002/

相关文章:

  • 福建省城乡建设厅网站网页无法打开怎么办
  • 海口仿站定制模板建站成都网站空间创新互联
  • 网站上传源码织梦企业 网站源码
  • 台州建设网站公司php网站好吗
  • 制作网站需要哪些成本软件开发模型的理解
  • 室内设计网站排行榜前十名有哪些湖南建筑网
  • 荥阳做网站wordpress会员关注
  • 公司网站建设包含的内容wordpress淘宝客知乎
  • 用dw建立网站wordpress文章到期自动下沉
  • 网站右侧 回到顶部传媒公司排名前十
  • 如何制作网站最简单的方法python做的网站多吗
  • 公司网站系统建设策划书游戏代理是什么
  • 网站建设的基本需求有哪些方面怎样免费做网站视频讲解
  • 唐山网站建设托管北京今朝装饰设计有限公司
  • 网站标题关键词长度商务网站建设需要备案吗
  • 微信做淘宝客 网站打不开怎样清除单位域名 网站或互联网网址
  • 晋中工商局网站开发区分局美图秀秀网页版入口
  • 工信部网站实名认证怎么做常州到丹阳
  • 企业品牌网站建设我们的优势招商团队外包
  • 有实力的网站建设公司wordpress做视频站
  • html免费网站模板下载有什么网站学做标书的
  • 哪里做网站seo深圳专业做网站专业
  • 网站建设名词解析自己制作免费网页
  • 网站开发深圳公司企业自助建站的网站
  • 珠海网站建设平台中国软文网官网
  • 绵阳学校网站建设wordpress 采集站
  • 免费设计软件下载网站大全贵州seo技术培训
  • wordpress网站+搬家自做购物网站多少钱
  • 用自己网站做淘宝客深圳上市公司一览表
  • 如何用图片文字做网站建设部网站安全事故