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:29Tensorflow 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
다운로드 확인
'머신러닝 > Tensorflow - Models' 카테고리의 다른 글
[Error] protoc object_detection/protos/*.proto --python_out=. (1) | 2018.05.02 |
---|---|
[Tensorflow Object Detection API] 3. Testing your own dataset (3) | 2017.09.04 |
[Tensorflow Object Detection API] 2. Training your own dataset (11) | 2017.08.30 |
[Tensorflow Object Detection API] 1. Creating your own dataset (25) | 2017.08.29 |
[Tensorflow-Slim] Convert to TFRecord file (0) | 2017.08.16 |
Comments