【Python機器學習】Tensorflow2.0語法變化

# 老版本中,若是要作運算 a = tf.add(1, 2) with tf.Session() as sess: # 建立一個會話 print(sess.run(a)) # 運行完自動關閉 # 2.0版本 @tf.function def geometric_mean(x, y): g_mean = tf.sqrt(x * y) return g_mean g_mea
相關文章
相關標籤/搜索