Skip to content

Commit

Permalink
Change tf.types.float32 to tf.float32
Browse files Browse the repository at this point in the history
Signed-off-by: Li Yi <denverdino@gmail.com>
  • Loading branch information
denverdino committed May 9, 2016
1 parent ae412a1 commit aea500c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SOURCE/get_started/basic_usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -242,8 +242,8 @@ feed 只在调用它的方法内有效, 方法结束, feed 就会消失. 最常

```python

input1 = tf.placeholder(tf.types.float32)
input2 = tf.placeholder(tf.types.float32)
input1 = tf.placeholder(tf.float32)
input2 = tf.placeholder(tf.float32)
output = tf.mul(input1, input2)

with tf.Session() as sess:
Expand Down

0 comments on commit aea500c

Please sign in to comment.