fix some trivial typos (#9565)

This commit is contained in:
freedom" Koan-Sin Tan 2017-05-02 01:18:02 +08:00 committed by Vijay Vasudevan
parent 99cc759e0b
commit a48d2ae1e5

View File

@ -81,10 +81,10 @@ bazel-bin/tensorflow/tools/graph_transforms/transform_graph \
--out_graph=optimized_inception_graph.pb \ --out_graph=optimized_inception_graph.pb \
--inputs='Mul:0' \ --inputs='Mul:0' \
--outputs='softmax:0' \ --outputs='softmax:0' \
--transforms='\ --transforms='
strip_unused_nodes(type=float, shape="1,299,299,3") \ strip_unused_nodes(type=float, shape="1,299,299,3")
remove_nodes(op=Identity, op=CheckNumerics) \ remove_nodes(op=Identity, op=CheckNumerics)
fold_old_batch_norms \ fold_old_batch_norms
' '
``` ```