在TensorFlow中,可以使用tf.constant()
函數來創建張量。例如:
import tensorflow as tf
# 創建一個標量
scalar = tf.constant(5)
# 創建一個向量
vector = tf.constant([1, 2, 3])
# 創建一個矩陣
matrix = tf.constant([[1, 2], [3, 4]])
# 創建一個三維張量
tensor = tf.constant([[[1, 2], [3, 4]], [[5, 6], [7, 8]]])