0


C++使用Tensorflow2.6训练好的模型进行预测

要在C语言中调用训练好的TensorFlow模型,需要使用TensorFlow C API。
https://tensorflow.google.cn/install/lang_c?hl=zh-cnten

TensorFlow 提供了一个 C API,该 API 可用于为其他语言构建绑定。该 API 在 c_api.h 中定义,旨在实现简洁性和一致性,而不是便利性。
在这里插入图片描述

下载后解压。得到文件夹结构,lib是tensorflow的动态链接库和对应的lib文件目录。include是头文件目录

├─include
│  └─tensorflow
│      ├─c
│      │  └─eager
│      └─core
│          └─platform
└─lib

python tensorflow2.6需要把训练好的模型保存为saved_model格式
tensorflow2.6在模型训练完成后保存,默认就是saved_model格式

model.fit(...
标签: c++ tensorflow neo4j

本文转载自: https://blog.csdn.net/m0_60352504/article/details/134485284
版权归原作者 百口可乐__ 所有, 如有侵权,请联系我们删除。

“C++使用Tensorflow2.6训练好的模型进行预测”的评论:

还没有评论