We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a172845 commit 30ceacbCopy full SHA for 30ceacb
examples/load_frozen_graph/main.cpp
@@ -8,7 +8,7 @@ int main() {
8
9
auto input = cppflow::fill({10, 5}, 1.0f);
10
std::cout << "start" << std::endl;
11
- cppflow::model model("../model.pb", {});
+ cppflow::model model("../model.pb", cppflow::model::FROZEN_GRAPH);
12
auto output = model({{"x:0", input}}, {{"Identity:0"}})[0];
13
14
std::cout << output << std::endl;
0 commit comments