我正在尝试通过执行类似操作来确定this Tensorflow Hub 模型是否可以转换为TFLITE格式(并最终为TPU /珊瑚板编译)。
converter = tf.compat.v1.lite.TFLiteConverter.from_saved_model("./")
tflite_model = converter.convert()
但是,我需要指定模型标记集,并且此命令没有给出结果(在TF 1.13.1和2.0中):
% saved_model_cli show --dir .
The given SavedModel contains the following tag-sets:
saem_model.pb 文件位于此目录中,并且Netron太笨拙-考虑到它几乎无法打开的模型大小-因此很难检查。可以打开模型进行推断:detector = hub.load(module_url).signatures['default']
,所以也许我可以显示detector
对象(?)的模型摘要。