일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- error
- linux
- CUDA
- FIle
- YouTube 8M
- raspberry pi
- pyTorch
- 딥러닝
- object detection
- dlib
- colaboratory
- face_recognition
- ubuntu
- shakeratos
- windows
- Deep Learning
- Jupyter notebook
- urllib
- dataset
- python
- Windows 10
- gpu memory
- download
- colab
- ppc64le
- Anaconda
- python3
- TensorFlow
- install
- keras
- Today
- Total
Shakerato
Tensorflow Object Detection Tutorial 본문
[Code and Explain] https://github.com/tensorflow/models/tree/master/research/object_detection [Download] https://github.com/tensorflow/models [Related Youtube: sentdex] https://www.youtube.com/watch?v=COlbP62-B-U [Anaconda 3, Create Envirnment for tensorflow 1.4] 1. open 'cmd' as administrator 2. conda update -n base conda 3. conda create -n tensorflow1.4 python=3.5 anaconda 4. [tensorflow-gpu 1.4] - cuda 8.0 should be installed! pip install Iv tensorflow-gpu==1.4.0 [ > tensorflow-gpu 1.5 needs cuda 9.0], install latest version pip install tensorflow-gpu 5. conda install -c anaconda cudnn 6. conda install -c menpo opencv [Tensorflow object_detection important setting] 1. Download Protobuf (https://github.com/google/protobuf/releases/tag/v3.5.1) 2. Create 'protoc_run_yoon.bat' file to convert *.proto to *.py like below (path is up to you) ::------------------------------------------------- @echo off for %%f in (C:/Users/yoon/Desktop/models/research/object_detection/protos/*) do ( call :Sub %%~nf ) :Sub set str=%* set str=%str:(C:)=% echo C:/protoc-3.5.1-win32/bin/protoc object_detection/protos/%str%.proto --python_out=. ::pause ::------------------------------------------------ 3. Run bat file like 'protoc_run_yoon.bat > temp.txt' 4. Go to C:/Users/[Username]/Desktop/models/research/ folder, call 'cmd' and copy all commends in 'temp.txt', paste into 'cmd'
If you want to use another model, follow below link's models
'Research' 카테고리의 다른 글
Role of validation for neural network (deep learning) - validation 역할 (0) | 2018.04.01 |
---|---|
Google colab에서 한국어 NLP 처리 환경 구축 (1) | 2018.03.31 |
How to make video clips of the long video using ffmpeg (0) | 2018.03.27 |
Deep Learning - GPU memory limitation, How to overcome it? (0) | 2018.03.26 |
FakeApp 1.1 Tutorial (0) | 2018.02.12 |