Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can I find the label map file(pbtxt) of ssd_mobilenet_v1_coco when using tensorflow?

I learn object detection on windows 10 with tensorflow object detection.

I download ssd_mobilenet_v1_coco_2018_01_28.tar.gz from https://github.com/tensorflow/models/blob/master/research/object_detection/g3doc/detection_model_zoo.md

After I unzipped the ssd_mobilenet_v1_coco_2018_01_28.tar.gz file, I didn't find the pbtxt file.

Where can I find the related pbtxt file of ssd_mobilenet_v1_coco?

I know that there some pbtxt files in models-master\research\object_detection\data folder, but which file is related to ssd_mobilenet_v1_coco?


1 Answers

The label map is not specific to an architecture, but rather to a dataset (which classes you support, and accordingly you should set the number of channels of the classification layer). Therefore, you simply need the label map which corresponds to coco, which is object_detection/data/mscoco_label_map.pbtxt.

like image 82
netanel-sam Avatar answered Nov 09 '25 06:11

netanel-sam