• 当前标签:Tensorflow

人工智能 Tensorflow基础篇_1

加法运算 例子 import tensorflow as tf a = tf.constant(5.0) b = tf.constant(6.0) sum = tf.add(a, b) with tf.Session as sess: sess.run(sum) 其中:sess.run() 是启动整个graph ses

2020-11-22 11:30:36 1429 2 4
阅读详情
  • 1
前往