【小白入门tensorflow】tensor的shape
获取一个tensor类型变量的shapeimport tensorflow as tfimport numpya=tf.random.normal([4,28,28,3])print(type(a))print(a.shape)print(a[1].shape)print(a[1,2].shape)print(a[1,2,3].shape)print(a[1,2,1,1].shape)之前报错是因为我把shape写成了shape(),感觉在入门深度学习的路上又像我当初入门C语言的时候,