【VSCode部署模型】导出TensorFlow2.X训练好的模型信息

参考tensorflow2.0 C++加载python训练保存的pb模型

经过模型训练及保存,我们得到"OptimalModelDataSet2"文件夹,模型的保存方法(.h5.pb文件),参考【Visual Studio Code】c/c++部署tensorflow训练的模型

其中"OptimalModelDataSet2"文件夹保存着训练好的模型数据"saved_model.pb"

bash 复制代码
要在OptimalModelDataSet2所在的文件夹下执行:
$ saved_model_cli show --dir ./OptimalModelDataSet2
会得到:
The given SavedModel contains the following tag-sets:
'serve'
使用'serve',继续执行:
$ saved_model_cli show --dir ./OptimalModelDataSet2/ --tag_set serve
会得到:
The given SavedModel MetaGraphDef contains SignatureDefs with the following keys:
SignatureDef key: "__saved_model_init_op"
SignatureDef key: "serving_default"
使用上述信息,继续:
$ saved_model_cli show --dir ./OptimalModelDataSet2/ --tag_set serve --signature_def serving_default
得到:
The given SavedModel SignatureDef contains the following input(s):
  inputs['input_1'] tensor_info:
      dtype: DT_FLOAT
      shape: (-1, 24)
      name: serving_default_input_1:0
The given SavedModel SignatureDef contains the following output(s):
  outputs['dense_30'] tensor_info:
      dtype: DT_FLOAT
      shape: (-1, 1)
      name: StatefulPartitionedCall:0
Method name is: tensorflow/serving/predict
这里输入和输出的name,要留好,c中调用会用到。
相关推荐
UNbuff_010 小时前
HTML 中的 CSS 使用说明
css·html·tensorflow
2401_897930062 天前
tensorflow常用使用场景
人工智能·python·tensorflow
XZSSWJS2 天前
机器学习基础-day06-TensorFlow线性回归
人工智能·机器学习·tensorflow
我是海飞3 天前
Tensorflow Lite 的yes/no语音识别音频预处理模型训练教程
python·学习·tensorflow·音视频·嵌入式·语音识别
朱龙凯3 天前
机器学习框架TensorFlow初探
tensorflow
JQLvopkk3 天前
CSS学习及心得之二
css·学习·tensorflow
道一234 天前
Keras/TensorFlow 中 `predict()` 函数详细说明
人工智能·tensorflow·keras
陌北v14 天前
深度学习三大框架对比评测:PaddlePaddle、PyTorch 与 TensorFlow
pytorch·深度学习·tensorflow·paddlepaddle
我是海飞4 天前
TensorFlow的Yes/No 关键词识别模型训练
人工智能·python·tensorflow·语音识别·neo4j
deepwater_zone5 天前
深度学习框架(TensorFlow,PyTorch)
pytorch·深度学习·tensorflow