Windows + TensorFlow + Faster Rcnn detailed installation steps

After many reference, you can finally run, and record it for easy reference:

Step a: Reference: http://www.360doc.com/content/18/1219/15/17157244_802903673.shtml

1. Install Anaconda

2. Create tensorflow virtual environment,

3. Select TensorFlow version

4. Install version dependency GPU

5. Installation TensorFlow

I installed the 1.9.0 version of the CPU:pip install --ignore-installed --upgrade tensorflow==1.9.0

Step two: Reference https://cloud.tencent.com/developer/news/303081

1. Download faster rcnn package

2. install python dependent libraries

3. Compile may occur in the process issue error: Unable to find vcvarsall.bat, so the installation of VS2015, re-compile. Reference: https://blog.csdn.net/chaofeili/article/details/90695280

4. download format data set VOC2007

5. Download a pre-trained network model VGG16

6. Training model: It may be an error that can not find matplotlib, scipy, PIL (corresponds pillow library), etc., install these libraries like the first run.

 

If it is installed by default python3.6, in training when an error occurs, the reference http://www.pianshen.com/article/132617857/ this generation cython_bbox.cp36-win_amd64.pyd

 

 

 

在此很感谢以上可参考内容!谢谢大家的分享!

 

 

Guess you like

Origin www.cnblogs.com/shellycn/p/11902416.html