c语言 int64 t占位符,为什么我会得到“您必须为dtype int64提供占位符张量输出值”?...
我正在嘗試構建一個讀取預先訓練的模型并使用它的C++程序。我把代碼from here修改了一下。 我現在擁有的是:為什么我會得到“您必須為dtype int64提供占位符張量輸出值”?
int main(int argc, char* argv[]) {
// Initialize a tensorflow session
Session* session;
Status status = NewSession(SessionOptions(), &session);
if (!status.ok()) {
std::cout << status.ToString() << "\n";
return 1;
}
// Read in the protobuf graph we exported
GraphDef graph_def;
status = ReadTextProto(Env::Default(), "models/train.pbtxt", &graph_def);
if (!status.ok()) {
std::cout << status.ToString() << "\n";
return 1;
}
// Add the graph to the session
status = session->Create(graph_def);
if (!status.ok()) {
std::cout << status.ToString() << "\n";
return 1;
}
tensorflow::Tensor inputs(DT_FLOAT, TensorShape({46}));
auto inputs_flat = inputs.flat();
inputs_flat.setRandom();
// The session will initialize the outputs
std::vector<:tensor> outputs;
status = session->Run({{"input", inputs}}, {"output"}, {}, &outputs);
if (!status.ok()) {
std::cout << status.ToString() << "\n"; //
return 1;
}
// Grab the first output
// and convert the node to a scalar representation.
auto output_c = outputs[0].scalar();
// Print the results
std::cout << outputs[0].DebugString() << "\n";
std::cout << output_c() << "\n";
// Free any resources used by the session
session->Close();
return 0;
}
但是當我運行它,我得到
Invalid argument: You must feed a value for placeholder tensor 'output' with dtype int64
[[Node: output = Placeholder[_output_shapes=[[-1]], dtype=DT_INT64, shape=[], _device="/job:localhost/replica:0/task:0/cpu:0"]()]]
我讀models/train.pbtxt有圖有14K線,所以這里我不復制它。我會把相關部分:
...................
node {
name: "input"
op: "Placeholder"
attr {
key: "_output_shapes"
value {
list {
shape {
dim {
size: -1
}
dim {
size: 46
}
}
}
}
}
attr {
key: "dtype"
value {
type: DT_FLOAT
}
}
attr {
key: "shape"
value {
shape {
}
}
}
}
node {
name: "output"
op: "Placeholder"
attr {
key: "_output_shapes"
value {
list {
shape {
dim {
size: -1
}
}
}
}
}
attr {
key: "dtype"
value {
type: DT_INT64
}
}
attr {
key: "shape"
value {
shape {
}
}
}
}
...................
所以讀取的問題:這個錯誤信息告訴我什么?
2017-01-02
matiasg
+1
它看起來像這張張流庫期待一個輸出變量傳遞給'Run'調用的輸出節點? –
+0
也許,但如何?我看到的例子像這樣工作。這里還有一個:https://github.com/tensorflow/tensorflow/tree/master/tensorflow/core/public –
總結
以上是生活随笔為你收集整理的c语言 int64 t占位符,为什么我会得到“您必须为dtype int64提供占位符张量输出值”?...的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 2009年计算机二级c语言考试真题,20
- 下一篇: linux snmp设置报警次数,Cen