gpt4 book ai didi

c++ - Tensorflow:在 C++ 中打印张量的内容

转载 作者:可可西里 更新时间:2023-11-01 18:16:56 28 4
gpt4 key购买 nike

如何打印到如下定义的张量的屏幕内容

std::vector<tensorflow::Tensor> finalOutput;

并通过运行以下操作为其赋值

tensorflow::Status run_status = session->Run({{"x",input_tensor}, 
{"keep_prob", keep_prob}},
{"prediction"},
{},
&finalOutput);

最佳答案

对于 example :

// The session will initialize the outputs
std::vector<tensorflow::Tensor> outputs;

// Run the session, evaluating our "c" operation from the graph
status = session->Run(inputs, {"c"}, {}, &outputs);
if (!status.ok()) {
std::cout << status.ToString() << "\n";
return 1;
}

// Grab the first output (we only evaluated one graph node: "c")
// and convert the node to a scalar representation.
auto output_c = outputs[0].scalar<float>();

// (There are similar methods for vectors and matrices here:
// https://github.com/tensorflow/tensorflow/blob/master/tensorflow/core/public/tensor.h)

// Print the results
std::cout << outputs[0].DebugString() << "\n"; // Tensor<type: float shape: [] values: 30>
std::cout << output_c() << "\n"; // 30

关于c++ - Tensorflow:在 C++ 中打印张量的内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45115028/

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