運行tf faster rcnn demo過程中問題記錄

整個流程參考:
https://github.com/endernewton/tf-faster-rcnn
https://www.cnblogs.com/toone/p/8433581.html

Installation

3、Build the Cython modules
ImportError: No module named Cython.Distutils
安裝cython:
sudo apt-get install cython
(可能會提示“有未能滿足的依賴關係,嘗試apt-get -f install",有則執行下面命令,沒有忽略)
sudo apt-get -f install
sudo apt-get install cython

Demo and Test with pre-trained models

1、Download pre-trained model
可能會下載不動,可以手動在Google drive下載需要的模型,例如voc_0712_80k-110k.tgz,並將其放在data文件夾下,在data文件夾下運行命令解壓:
tar xvf voc_0712_80k-110k.tgz
解壓後爲:在這裏插入圖片描述
3、Demo for testing on custom images
ImportError: No module named easydict
安裝easydict:
1、sudo apt install python-pip
2、pip install easydict --user
ImportError : No module named yaml
安裝:
sudo apt-get install python-yaml

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章