Commit dcb49d91 authored by Neal Wu's avatar Neal Wu
Browse files

Update README.md

`tf.mul` -> `tf.multiply`
parent 26bf7ce9
...@@ -319,7 +319,7 @@ their use, consider the following example. ...@@ -319,7 +319,7 @@ their use, consider the following example.
def MyNewOp(inputs): def MyNewOp(inputs):
varA = ... varA = ...
varB = ... varB = ...
outputs = tf.mul(varA, inputs) + varB outputs = tf.multiply(varA, inputs) + varB
return outputs return outputs
``` ```
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment