問題描述:
查看tensor數(shù)據(jù)大小時使用了data.shape(),報錯:
TypeError: 'torch.Size' object is not callable 或 TypeError: 'tuple' object is not callable。
解決方法:
查看數(shù)據(jù)類型:data.dtype
查看數(shù)據(jù)大小:data.shape
補充:pytorch tensor比較大小 數(shù)據(jù)類型要注意
如下
a = torch.tensor([[0, 0], [0, 0]])
print(a>=0.5)
輸出
tensor([[1, 1],
[1, 1]], dtype=torch.uint8)
結(jié)果明顯不對, 分析原因是因為, a是long類型, 而0.5是float. 0.5會被轉(zhuǎn)化為 long, 變?yōu)?. 因此結(jié)果會出錯, 做出如下修改就可以得到正確答案
正確用法:
a = torch.tensor([[0, 0], [0, 0]]).float()
print(a>=0.5)
以上為個人經(jīng)驗,希望能給大家一個參考,也希望大家多多支持腳本之家。
您可能感興趣的文章:- PyTorch中Tensor的數(shù)據(jù)類型和運算的使用
- pytorch逐元素比較tensor大小實例
- pytorch常見的Tensor類型詳解
- pytorch中tensor張量數(shù)據(jù)類型的轉(zhuǎn)化方式