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 92407fe commit bd51145Copy full SHA for bd51145
tensorflow-core/tensorflow-core-api/src/main/java/org/tensorflow/Session.java
@@ -445,8 +445,8 @@ public Runner runner() {
445
public void run(String opName) {
446
Operation operation = graph.operation(opName);
447
if (operation == null) {
448
- throw new IllegalArgumentException("Initializer operation named '"
449
- + opName + "' cannot be found in the graph");
+ throw new IllegalArgumentException("Operation named '" + opName
+ + "' cannot be found in the graph");
450
}
451
runner().addTarget(operation).run();
452
0 commit comments