3
我想使用Python和Tensorflow
我想說明使用功能control_dependencies
的例子(深度學習文庫)的工作,例如我想創建兩個tensors
X和Y,如何使用Tensorflow的control_dependencies方法?
if
X = = Y then
打印「是」
的源代碼:
import tensorflow as tf
session = tf.Session()
x= tf.constant(5)
y= tf.constant(50)
with tf.control_dependencies([ tf.assert_equal(x,y)]) :
print('yup')
通常沒有出現,但他的打印:燁 所以爲什麼打印燁?