程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

[python] . any()/. all()

編輯:Python

List of articles

  • Conclusion
  • verification


Conclusion

all():“ Yes ‘ false ’ by False, whole ‘ really ’ by True”
any():“ Yes ‘ really ’ by True, whole ‘ false ’ by False”


verification

import torch
a = torch.rand([2, 4, 6])
print(a)
idx = torch.tensor([0])
b = torch.index_fill(a, dim=2, index=idx, value=0.)
print(b)
print(a.all() == b.all())
print(a.any() == b.any())
c = a.clone().detach()
c[:, :, 0] = 0
print(c.all() == b.all())
print(c.any() == b.any())

Output:

tensor([[[0.9474, 0.3897, 0.4443, 0.0562, 0.4451, 0.6056],
[0.0585, 0.6470, 0.0693, 0.8196, 0.1546, 0.3637],
[0.5138, 0.0938, 0.0193, 0.4533, 0.8031, 0.9386],
[0.8750, 0.8856, 0.6365, 0.8229, 0.9639, 0.4817]],
[[0.0771, 0.9319, 0.0218, 0.8928, 0.6224, 0.1546],
[0.3917, 0.0770, 0.5662, 0.1670, 0.5407, 0.9702],
[0.8385, 0.5863, 0.4124, 0.1201, 0.1032, 0.4559],
[0.0603, 0.2551, 0.8327, 0.8269, 0.1052, 0.1294]]])
tensor([[[0.0000, 0.3897, 0.4443, 0.0562, 0.4451, 0.6056],
[0.0000, 0.6470, 0.0693, 0.8196, 0.1546, 0.3637],
[0.0000, 0.0938, 0.0193, 0.4533, 0.8031, 0.9386],
[0.0000, 0.8856, 0.6365, 0.8229, 0.9639, 0.4817]],
[[0.0000, 0.9319, 0.0218, 0.8928, 0.6224, 0.1546],
[0.0000, 0.0770, 0.5662, 0.1670, 0.5407, 0.9702],
[0.0000, 0.5863, 0.4124, 0.1201, 0.1032, 0.4559],
[0.0000, 0.2551, 0.8327, 0.8269, 0.1052, 0.1294]]])
.all for a and b tensor(False)
.any for a and b tensor(True)
.all for b and c tensor(True)
.any for b and c tensor(True)

  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved