最佳答案
在 numpy 中,V.shape
给出 V 的维数为整数的元组。
在张量流 V.get_shape().as_list()
中给出了 V 的维数的整数列表。
在 pytch 中,V.size()
给出一个 size 对象,但是如何将它转换为 int?