我正在嘗試構建一個讀取預先訓練的模型並使用它的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<float>();
inputs_flat.setRandom();
// The session will initialize the outputs
std::vector<tensorflow::Tensor> outputs;
status = session->Run({{"input", inputs}}, {"output"}, {}, &outputs);
if (!status.ok()) {
std::cout << status.ToString() << "\n"; // <--- error shows here
return 1;
}
// Grab the first output
// and convert the node to a scalar representation.
auto output_c = outputs[0].scalar<int>();
// 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 {
}
}
}
}
...................
所以讀取的問題:這個錯誤信息告訴我什麼?
它看起來像這張張流庫期待一個輸出變量傳遞給'Run'調用的輸出節點? – tinkertime
也許,但如何?我看到的例子像這樣工作。這裏還有一個:https://github.com/tensorflow/tensorflow/tree/master/tensorflow/core/public – matiasg