You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
should add up to [12, 15, 18], given: [9,12, 15] Also
Q10. _x = np.array([1, -1]) x = tf.convert_to_tensor(_x) out1 = tf.negative(x) out2 = -x print(out.eval())
should have print(out.eval()) replaced with print(out1.eval())
and the answer is correspondingly: [-1, 1]
thanks for the great tutorial :)
The text was updated successfully, but these errors were encountered:
Q8.
should add up to
[12, 15, 18]
, given:[9,12, 15]
Also
Q10.
_x = np.array([1, -1]) x = tf.convert_to_tensor(_x) out1 = tf.negative(x) out2 = -x print(out.eval())
should have
print(out.eval())
replaced withprint(out1.eval())
and the answer is correspondingly:
[-1, 1]
thanks for the great tutorial :)
The text was updated successfully, but these errors were encountered: