Skip to content

Commit b9f67b1

Browse files
committed
Fix the build error
1 parent 23ec32a commit b9f67b1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Examples/ExampleCommon/ImageUtil.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public static TFTensor CreateTensorFromImageFile (string file, TFDataType destin
1616
TFOutput input, output;
1717

1818
// Construct a graph to normalize the image
19-
using (var graph = ConstructGraphToNormalizeImage (out graph, out input, out output, destinationDataType)){
19+
using (var graph = ConstructGraphToNormalizeImage (out input, out output, destinationDataType)){
2020
// Execute that graph to normalize this one image
2121
using (var session = new TFSession (graph)) {
2222
var normalized = session.Run (

0 commit comments

Comments
 (0)