Minor update to example script to produce the reported output.

Change: 123299440
This commit is contained in:
A. Unique TensorFlower
2016-05-26 01:20:46 -08:00
committed by TensorFlower Gardener
parent 9be296aa4b
commit c963048b53

View File

@@ -274,9 +274,9 @@ example we fetched the single node `state`, but you can also fetch multiple
tensors:
```python
input1 = tf.constant(3.0)
input2 = tf.constant(2.0)
input3 = tf.constant(5.0)
input1 = tf.constant([3.0])
input2 = tf.constant([2.0])
input3 = tf.constant([5.0])
intermed = tf.add(input2, input3)
mul = tf.mul(input1, intermed)