yongyong-e

[Tensorflow Object Detection API] Download tensorflow detection models 본문

머신러닝/Tensorflow - Models

[Tensorflow Object Detection API] Download tensorflow detection models

Yonghan Kim 2017. 9. 27. 14:29

Tensorflow Detection Models

Model name

Speed 

COCO mAP 

Outputs 

   ssd_mobilenet_v1_coco

fast 

21 

Boxes 

   ssd_inception_v2_coco

fast 

24 

Boxes 

   rfcn_resnet101_coco 

medium 

30 

Boxes 

   faster_rcnn_resnet101_coco 

medium 

32 

Boxes 

   faster_rcnn_inception_resnet_v2_atrous_coco 

slow 

37 

Boxes 


Download Models

다운로드 받을 디렉토리 생성

$ mkdir tfdetection_models

$ cd tfdetection_models


Tensorflow Detection Models 다운로드

$ for model in \

ssd_mobilenet_v1_coco_11_06_2017 \

ssd_inception_v2_coco_11_06_2017 \ rfcn_resnet101_coco_11_06_2017 \ faster_rcnn_resnet101_coco_11_06_2017 \ faster_rcnn_inception_resnet_v2_atrous_coco_11_06_2017 do \ curl -OL http://download.tensorflow.org/models/object_detection/$model.tar.gz done


다운로드 확인 


Comments