tensorflow Mobilenet 导出模型的方法

Posted wndheart

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tensorflow Mobilenet 导出模型的方法相关的知识,希望对你有一定的参考价值。

python export_inference_graph.py
--input_type image_tensor
--pipeline_config_path ssd_mobilenet_v1_coco.config
--trained_checkpoint_prefix model.ckpt-134 // 注意这里是前缀 ,不是完整文件名。eg: model.ckpt-101.data-00000-of-00001 这里只需要 model.ckpt-101
--output_directory model

 

以上是关于tensorflow Mobilenet 导出模型的方法的主要内容,如果未能解决你的问题,请参考以下文章

MobileNet实战:tensorflow2.X版本,MobileNetV1图像分类任务(小数据集)

MobileNet实战:tensorflow2.X版本,MobileNetV3图像分类任务(小数据集)

MobileNet实战:tensorflow2.X版本,MobileNetV3图像分类任务(小数据集)

恢复预训练模型的 TensorFlow 检查点文件

使用 MobileNet 重新训练图像检测

MobileNet实战:tensorflow2.X版本,MobileNetV3图像分类任务(大数据集)