Home > Net >  What are these 2 files in the CenterNet MobileNetV2 from the Tensorflow OD model zoo?, Do we need th
What are these 2 files in the CenterNet MobileNetV2 from the Tensorflow OD model zoo?, Do we need th

Time:05-19

Do we need these files?, The Tensorflow Doc don't say anything about them

CodePudding user response:

The model.tflite file is the pretrained model in .tflite format. So if you want to use the model out of the box, you can use this file.

The label_map.txt is used to map the output of your network to actual comprehensible results. I.e. both of the files are needed if you want to use the model out of the box. It is not needed for re-training.

  • Related