在 TensorFlow 中定義常量可以使用 tf.constant()
函數,示例如下:
import tensorflow as tf
# 定義一個常量
const_tensor = tf.constant(5.0)
# 打印常量的值
with tf.Session() as sess:
print(sess.run(const_tensor))
在上面的示例中,使用 tf.constant(5.0)
定義了一個常量,然后通過 sess.run()
函數獲取并打印了這個常量的值。