维度查看
代码:
const_d_1 = tf.constant([[1, 2, 3, 4]],shape=[2,2], dtype=tf.float32)
查看维度常用的三种方式
print(const_d_1.shape)
print(const_d_1.get_shape())
print(tf.shape(const_d_1))#输出为张量,其数值表示的是所查看张量维度大小
输出:
(2, 2)
(2, 2)
tf.Tensor([2 2], shape=(2,), dtype=int32)