gpt4 book ai didi

c++ - TensorFlow 0.12 模型文件

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:13:19 25 4
gpt4 key购买 nike

我训练模型并使用以下方法保存它:

saver = tf.train.Saver()
saver.save(session, './my_model_name')

除了 checkpoint 文件,它只包含指向模型最近检查点的指针,这会在当前路径中创建以下 3 个文件:

  1. my_model_name.meta
  2. my_model_name.index
  3. my_model_name.data-00000-of-00001

我想知道每个文件包含什么。

我想用 C++ 加载这个模型并运行推理。 label_image示例使用 ReadBinaryProto() 从单个 .bp 文件加载模型。我想知道如何从这 3 个文件加载它。下面的 C++ 等价物是什么?

new_saver = tf.train.import_meta_graph('./my_model_name.meta')
new_saver.restore(session, './my_model_name')

最佳答案

您的保护程序创建的内容称为“Checkpoint V2”,并在 TF 0.12 中引入。

我让它工作得很好(尽管 C++ 部分的文档很糟糕,所以我花了一天时间来解决)。有人建议converting all variables to constantsfreezing the graph ,但实际上不需要这些。

Python部分(保存)

with tf.Session() as sess:
tf.train.Saver(tf.trainable_variables()).save(sess, 'models/my-model')

如果您使用 tf.trainable_variables() 创建 Saver,您可以节省一些麻烦和存储空间。但也许一些更复杂的模型需要保存所有数据,然后将此参数删除到 Saver,只需确保您在之后创建Saver > 您的图表已创建。为所有变量/层赋予唯一的名称也是非常明智的,否则你可能会遇到不同的问题。

C++部分(推理)

请注意,checkpointPath 不是任何现有文件的路径,只是它们的通用前缀。如果您错误地将 .index 文件的路径放在那里,TF 不会告诉您这是错误的,但由于未初始化的变量,它会在推理过程中死掉。

#include <tensorflow/core/public/session.h>
#include <tensorflow/core/protobuf/meta_graph.pb.h>

using namespace std;
using namespace tensorflow;

...
// set up your input paths
const string pathToGraph = "models/my-model.meta"
const string checkpointPath = "models/my-model";
...

auto session = NewSession(SessionOptions());
if (session == nullptr) {
throw runtime_error("Could not create Tensorflow session.");
}

Status status;

// Read in the protobuf graph we exported
MetaGraphDef graph_def;
status = ReadBinaryProto(Env::Default(), pathToGraph, &graph_def);
if (!status.ok()) {
throw runtime_error("Error reading graph definition from " + pathToGraph + ": " + status.ToString());
}

// Add the graph to the session
status = session->Create(graph_def.graph_def());
if (!status.ok()) {
throw runtime_error("Error creating graph: " + status.ToString());
}

// Read weights from the saved checkpoint
Tensor checkpointPathTensor(DT_STRING, TensorShape());
checkpointPathTensor.scalar<std::string>()() = checkpointPath;
status = session->Run(
{{ graph_def.saver_def().filename_tensor_name(), checkpointPathTensor },},
{},
{graph_def.saver_def().restore_op_name()},
nullptr);
if (!status.ok()) {
throw runtime_error("Error loading checkpoint from " + checkpointPath + ": " + status.ToString());
}

// and run the inference to your liking
auto feedDict = ...
auto outputOps = ...
std::vector<tensorflow::Tensor> outputTensors;
status = session->Run(feedDict, outputOps, {}, &outputTensors);

为了完整起见,这里是 Python 的等价物:

Python 中的推理

with tf.Session() as sess:
saver = tf.train.import_meta_graph('models/my-model.meta')
saver.restore(sess, tf.train.latest_checkpoint('models/'))
outputTensors = sess.run(outputOps, feed_dict=feedDict)

关于c++ - TensorFlow 0.12 模型文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41992346/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com