概述
获取一个tensor类型变量的shape
import tensorflow as tf
import numpy
a=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语言的时候,犯很低级的错误,哭辽
报错信息如下:
print(a.shape())
TypeError: 'TensorShape' object is not callable
最后
以上就是健忘海燕为你收集整理的【小白入门tensorflow】tensor的shape的全部内容,希望文章能够帮你解决【小白入门tensorflow】tensor的shape所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复