pb模型怎么转tflite
时间: 2023-02-28 20:54:12 浏览: 121
tflite2onnx:将TensorFlow Lite模型(* .tflite)转换为ONNX
要将 PB 模型转换为 TFLite 模型,您需要使用 TensorFlow 工具。您可以在命令行中使用以下命令完成转换:
```
tflite_convert --output_file=model.tflite --graph_def_file=model.pb
```
其中,`model.pb` 是 PB 模型的文件名,`model.tflite` 是您希望生成的 TFLite 模型的文件名。
更多关于如何使用 TFLite 进行模型转换的信息,请参阅 TensorFlow 官方文档: https://www.tensorflow.org/lite/convert/python_api
阅读全文