Caffe安裝的坑整理
怎麼說了,入了深度學習的坑,就要踩一踩才算你入門,這裡我整理了我在安裝學習caffe自己遇到的坑:
1.Caffe-GPU編譯問題:nvcc fatal : Unsupported gpu architecture 'compute_20'
仔細查看了一下 Makefile.config 中 CUDA_ARCH 設定未按規定設定:
# CUDA architecture setting: going with all of them. # For CUDA < 6.0, comment the *_50 through *_61 lines for compatibility. # For CUDA < 8.0, comment the *_60 and *_61 lines for compatibility. # For CUDA >= 9.0, comment the *_20 and *_21 lines for compatibility. CUDA_ARCH := -gencode arch=compute_20,code=sm_20 \ -gencode arch=compute_20,code=sm_21 \ -gencode arch=compute_30,code=sm_30 \ -gencode arch=compute_35,code=sm_35 \ -gencode arch=compute_50,code=sm_50 \ -gencode arch=compute_52,code=sm_52 \ -gencode arch=compute_60,code=sm_60 \ -gencode arch=compute_61,code=sm_61 \ -gencode arch=compute_61,code=compute_61
因為我裝的是CUDA9.0所以把下面這兩行刪除就可以了
-gencode arch=compute_20,code=sm_20 \
-gencode arch=compute_20,code=sm_21 \
2. ./include/caffe/util/hdf5.hpp:7:18: fatal error: hdf5.h: No such file or directory
In file included from src/caffe/solvers/sgd_solver.cpp:5:0: ./include/caffe/util/hdf5.hpp:7:18: fatal error: hdf5.h: No such file or directory compilation terminated. Makefile:591: recipe for target '.build_release/src/caffe/solvers/sgd_solver.o' failed make: *** [.build_release/src/caffe/solvers/sgd_solver.o] Error
發現是依賴出問題了,我已經安裝了hdf5了,
[email protected]:~/caffe# whereis hdf5
hdf5: /usr/include/hdf5
所以修改Makefile.config
# Whatever else you find you need goes here. INCLUDE_DIRS := $(PYTHON_INCLUDE) /usr/include/hdf5/serial /usr/local/include LIBRARY_DIRS := $(PYTHON_LIB) /usr/lib/x86_64-linux-gnu/hdf5/serial /usr/local/lib /usr/lib
重新編譯ok了
相關推薦
Caffe安裝的坑整理
怎麼說了,入了深度學習的坑,就要踩一踩才算你入門,這裡我整理了我在安裝學習caffe自己遇到的坑: 1.Caffe-GPU編譯問題:nvcc fatal : Unsupported gpu architecture 'compute_20' 仔細查看了一下 Makef
windows10+VS2015+CPUonly+Caffe安裝 填坑!!!
準備工作:安裝VS2015(網上基本上都是2013,我的電腦裡之前裝好的是2015,所以按照這個版本試一下)Cmake 3.11.0Python 2.7(我的電腦上原來安裝了python3.6,參考了這篇部落格 http://blog.csdn.net/dream_an/ar
聯想拯救者(r720)安裝Ubuntu16.04及填坑過程+cuda+cudnn+opencv+tensorflow+caffe安裝及pip,git網速慢問題
U盤安裝Ubuntu16.04LTS: 2)在磁碟管理器中壓縮出給ubuntu的空閒空間,確保該空間為未分配。我的筆記本是128gSSD+1tHDD,win10作為主系統放在SSD中,ubuntu裝在HDD中,其中對HDD壓縮了100G空間。 4)重啟電腦,按F2
最全caffe安裝踩坑記錄(Anaconda,nvidia-docker,Linux編譯)
Anaconda,nvidia-docker,Linux三種方式安裝caffe 1.Anaconda安裝caffe 1.首先安裝anaconda 2.建立虛擬環境(python2.7) conda create -n caffe python=2.7 anaconda 3.安
Windows下caffe安裝詳解(僅CPU)
net library dad 新建 math 錯誤 format ack 訓練集 本文大多轉載自 http://blog.csdn.net/guoyk1990/article/details/52909864,加入部分自己實戰心得。 1、環境:windows 7\VS20
caffe日常坑系列之:undefined reference to symbol '_ZN2cv6String10deallocateEv'
iss ren and tor ssi symbols str mis locate 在使用caffe庫編譯C++時出現的 解決如下: /usr/bin/ld: /tmp/ccA5JGRP.o: undefined reference to symbol ‘_ZN2cv
ubuntu166.04之Caffe安裝
查找 之前 b- 深度 fat con googl libraries error 寫在前面:之前一直在搞keras,最近由於某些需求,需要學習caffe,在此記錄caffe的安裝記錄。默認已經安裝了cuda 如果是從其他的深度學習平臺遷移到Caffe,那麽按照這個教程來就
微信小程序開發問題踩坑整理,web-view、openID、小程序支付等匯總
模板 www. 通過 file 微信小程序 ref 網絡請求 session保持 family 微信小程序開發過程中遇到的問題踩坑整理,內容包括web-view、openID、小程序支付、網絡請求等等一系列問題匯總,希望對大家能有一定幫助和啟發。 內容如下: 關於小程序
windows redis 服務安裝坑
-i 3.0.5 不知道 環境 edi 服務 bsp ice all 環境 winserver 2012 最新版的redis:3.0.503 redis-server.exe --service-install redis.windows.conf --ma
VMware esxi安裝坑(基於虛擬機器安裝)
1、安裝版本6.7 顯示紫色屆面提示 unintialied 解決辦法:更換6.5 update版本 6.5安裝教程 https://www.cnbl
SRS 編譯安裝坑
SRS 編譯 start #./objs/srs -c conf/rtmp.conf kill #ps aux | grep srs | awk {'print $2'} | xargs kill
Linux初級:軟體包管理(差編譯安裝未整理)
軟體包管理 1、ABI:application binary interfac 應用程式二進位制介面,應用程式要在作業系統上執行必須符合作業系統的介面 Linux:ELF(Executable and Linkable Format) Windows:PE(Portable Executab
caffe Python API整理
目錄 1、Packages匯入 2、定義layer 3、生成prototxt檔案 4、生成Solver檔案 5、Model訓練 6、訪問layer輸出值 7、net.params訪問網路引數 8、二進位制均值檔案轉python均值檔案 9、圖片預處理 10
caffe安裝教程2
0.安裝一些基本依賴項: $ sudo apt-get install libprotobuf-dev libleveldb-dev libsnappy-dev libopencv-dev libhdf5-serial-dev protobuf-compiler $ sudo apt
caffe 安裝問題小總結(make pycaffe
caffe 安裝問題小總結(make pycaffe) 1\ Make pycaffe -j8編譯報錯 gedit ~/.bashrc開啟檔案,最後面加入 自己的路徑 export PYTHONPATH=/home/hyhuang/下載/caffe/python source ~/.ba
python爬蟲框架--Pyspider一些安裝坑
Pyspider一些安裝坑 本文主要是新手針對安裝pyspider框架的過程的一下問題: pycharm中安裝pyspider框架 安裝pip 利用pip安裝pyspider 執行pyspider UML序列圖和流程圖 離線寫部落格
ubuntu18.04 docker安裝+docker使用caffe+一般caffe安裝
Docker安裝 先移除歷史版本: sudo apt-get remove docker docker-engine docker.io 安裝軟體包來允許apt通過HTTPS使用儲存庫 $ sudo apt-get install \ apt-transport-
MongoDB安裝 -- 坑
1.筆者之前安裝MongoDB的時候一路next下去,結果最後一步苦等了一個多小時也沒完成,最終從頭再來分分鐘搞定。 官網下載地址:https://www.mongodb.com/download-center#community 下載 安裝包。 2.
windows(無GPU)+VS2013,caffe安裝測試mnist問題及解決
剛接觸DL,caffe安裝,小菜一枚,僅此記錄走過的坑。整不起GPU,只能在CPU上比劃比劃。 一、準備工具: VS2013(本文僅限於VS2013版本,VS2015版本目前還未搞定,搞定後待續) windows版本的caffe https://github.com/BVL
ubuntu18.04 caffe安裝
1 安裝虛擬機器 2 下載ubuntu18.04 http://mirrors.zju.edu.cn/ubuntu-releases/18.04/ 3 安裝ubuntu18.04 4 修改ubuntu的更新源 sudo apt-get update 讓更新源生效 (記得2年前這個源把我折騰的