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.
def MyNewOp(inputs):
varA = ...
varB = ...
outputs = tf.mul(varA, inputs) + varB
outputs = tf.multiply(varA, inputs) + varB
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