python - 从 Python 导出 Tensorflow 图以在 C++ 中使用

标签 python c++ export tensorflow deep-learning

究竟应该如何导出 python 模型以供在 c++ 中使用?

我正在尝试做与本教程类似的事情: https://www.tensorflow.org/versions/r0.8/tutorials/image_recognition/index.html

我正在尝试在 C++ API 中导入我自己的 TF 模型,而不是导入初始模型。我调整了输入大小和路径,但奇怪的错误不断出现。我花了一整天阅读 stack overflow 和其他论坛,但无济于事。

我尝试了两种导出图表的方法。

方法一:元图。

...loading inputs, setting up the model, etc....

sess = tf.InteractiveSession()
sess.run(tf.initialize_all_variables())


for i in range(num_steps):  
  x_batch, y_batch = batch(50)  
  if i%10 == 0:
        train_accuracy = accuracy.eval(feed_dict={
        x:x_batch, y_: y_batch, keep_prob: 1.0})
        print("step %d, training accuracy %g"%(i, train_accuracy))
  train_step.run(feed_dict={x: x_batch, y_: y_batch, keep_prob: 0.5})

print("test accuracy %g"%accuracy.eval(feed_dict={
    x: features_test, y_: labels_test, keep_prob: 1.0}))

saver = tf.train.Saver(tf.all_variables())
checkpoint = 
   '/home/sander/tensorflow/tensorflow/examples/cat_face/data/model.ckpt'
    saver.save(sess, checkpoint)

   tf.train.export_meta_graph(filename=
   '/home/sander/tensorflow/tensorflow/examples/cat_face/data/cat_graph.pb',  
    meta_info_def=None,
    graph_def=sess.graph_def,
    saver_def=saver.restore(sess, checkpoint),
    collection_list=None, as_text=False)

方法 1 在尝试运行程序时会产生以下错误:

[libprotobuf ERROR 
google/protobuf/src/google/protobuf/wire_format_lite.cc:532] String field 
'tensorflow.NodeDef.op' contains invalid UTF-8 data when parsing a protocol 
buffer. Use the 'bytes' type if you intend to send raw bytes. 
E tensorflow/examples/cat_face/main.cc:281] Not found: Failed to load 
compute graph at 'tensorflow/examples/cat_face/data/cat_graph.pb'

我还尝试了另一种导出图形的方法:

方法二:write_graph:

tf.train.write_graph(sess.graph_def, 
'/home/sander/tensorflow/tensorflow/examples/cat_face/data/', 
'cat_graph.pb', as_text=False)

这个版本实际上似乎加载了一些东西,但是我得到一个关于变量没有被初始化的错误:

Running model failed: Failed precondition: Attempting to use uninitialized  
value weight1
[[Node: weight1/read = Identity[T=DT_FLOAT, _class=["loc:@weight1"], 
_device="/job:localhost/replica:0/task:0/cpu:0"](weight1)]]

最佳答案

首先,您需要使用以下命令将图形定义写入文件

with tf.Session() as sess:
//Build network here 
tf.train.write_graph(sess.graph.as_graph_def(), "C:\\output\\", "mymodel.pb")

然后,使用saver保存你的模型

saver = tf.train.Saver(tf.global_variables()) 
saver.save(sess, "C:\\output\\mymodel.ckpt")

然后,您将在输出中获得 2 个文件,mymodel.ckpt、mymodel.pb

here 下载 freeze_graph.py并在 C:\output\中运行以下命令。如果输出节点名称与您不同,请更改它。

python freeze_graph.py --input_graph mymodel.pb --input_checkpoint mymodel.ckpt --output_node_names softmax/Reshape_1 --output_graph mymodelforc.pb

您可以直接从 C 中使用 mymodelforc.pb。

你可以使用下面的C代码来加载proto文件

#include "tensorflow/core/public/session.h"
#include "tensorflow/core/platform/env.h"
#include "tensorflow/cc/ops/image_ops.h"

Session* session;
NewSession(SessionOptions(), &session);

GraphDef graph_def;
ReadBinaryProto(Env::Default(), "C:\\output\\mymodelforc.pb", &graph_def);

session->Create(graph_def);

现在您可以使用 session 进行推理。

您可以按如下方式应用推理参数:

// Same dimension and type as input of your network
tensorflow::Tensor input_tensor(tensorflow::DT_FLOAT, tensorflow::TensorShape({ 1, height, width, channel }));
std::vector<tensorflow::Tensor> finalOutput;

// Fill input tensor with your input data

std::string InputName = "input"; // Your input placeholder's name
std::string OutputName = "softmax/Reshape_1"; // Your output placeholder's name

session->Run({ { InputName, input_tensor } }, { OutputName }, {}, &finalOutput);

// finalOutput will contain the inference output that you search for

关于python - 从 Python 导出 Tensorflow 图以在 C++ 中使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36682832/

相关文章:

c++ - Ubuntu Linux 上的 Makefile C++11 错误

c++ - Eigen::Vector3f 对齐

android - 在导入到 Android 应用程序之前验证 sqlite 数据库

Javascript/Typescript 将默认常量导出为异步函数调用的值

python - 如果选中复选框,则在列表中添加值 Python

python - 如何在 "IN"运算符 Python Cassandra 驱动程序中使用 python 列表?

c++ - 只有默认参数有效

mysql - 使用导出与动态数据库node.js连接

python - PyQt:获取调用特定功能的按钮

python - 如何将 QPlainTextEdit 向右对齐?