mirror of
https://github.com/zebrajr/tensorflow.git
synced 2026-01-15 12:15:41 +00:00
Minor update to example script to produce the reported output.
Change: 123299440
This commit is contained in:
committed by
TensorFlower Gardener
parent
9be296aa4b
commit
c963048b53
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user