2017.06.15 구글에서 텐서플로우로 구현한 Object Detection 코드를 공개하였다.

Detection Model은 아래 다섯 종류 중에 선택하여 사용할 수 있다.

  • Single Shot Multibox Detector (SSD) with MobileNet,
  • SSD with Inception V2,
  • Region-Based Fully Convolutional Networks (R-FCN) with Resnet 101,
  • Faster RCNN with Resnet 101,
  • Faster RCNN with Inception Resnet v2


[ 깃허브 주소] https://github.com/tensorflow/models/tree/master/object_detection



 git config --global credential.helper cache

 git config --global credential.helper --timeout 9000

--timeout <time_second>


- Reference

https://git-scm.com/book/ko/v2/Git-%EB%8F%84%EA%B5%AC-Credential-%EC%A0%80%EC%9E%A5%EC%86%8C#_credential_caching

How to clone a sub-directory only of a Git respository

 mkdir <repo>

cd <repo>

git init

git remote add -f origin <url>

git config core.sparseCheckout true

echo "some/dir/" >> .git/info/sparse-checkout

echo "another/sub/tree" >> .git/info/sparse-checkout

git pull origin master


-Reference

https://stackoverflow.com/questions/600079/how-do-i-clone-a-subdirectory-only-of-a-git-repository

- EXAMPLE

| First Header  | Second Header | Third Header         |
| :------------ | :-----------: | -------------------: |
| First row     | Data          | Very long data entry |
| Second row    | **Cell**      | *Cell*               |
| Third row     | Cell that spans across two columns  ||
[Table caption, works as a reference][section-mmd-tables-table1] 

Result

Table caption, works as a reference
FIRST HEADERSECOND HEADERTHIRD HEADER
First rowDataVery long data entry
Second rowCellCell
Third rowCell that spans across two columns


- Alignment

| Header One | Header Two | Header Three | Header Four |
| ---------- | :--------- | :----------: | ----------: |
| Default    | Left       | Center       | Right       |
HEADER ONEHEADER TWOHEADER THREEHEADER FOUR
DefaultLeftCenterRight


- Column spanning

| Column 1 | Column 2 | Column 3 | Column 4 |
| -------- | :------: | -------- | -------- |
| No span  | Span across three columns    |||
COLUMN 1COLUMN 2COLUMN 3COLUMN 4
No spanSpan across three columns


- Reference

https://productivityarchive.wordpress.com/2013/08/10/%EB%A7%88%ED%81%AC%EB%8B%A4%EC%9A%B4-%EC%96%B8%EC%96%B4%EB%A5%BC-%EC%9D%B4%EC%9A%A9%ED%95%B4%EC%84%9C-%ED%91%9C-%EB%A7%8C%EB%93%A4%EA%B8%B0%EC%98%81%EB%AC%B8-2/

+ Recent posts