机智小霸王

文章
4
资源
0
加入时间
2年10月21天

Pytorch学习 (二十六)---- torch.scatter的使用总说

总说一个非常有用的函数,主要是用于“group index”的操作。from torch_scatter import scatterimport torchsrc = (torch.rand(2, 6, 2)*4).int()index = torch.tensor([0, 1, 0, 1, 2, 1])# Broadcasting in the first and last dim.out = scatter(src, index, dim=1, reduce="sum"

java封装

通常,应禁止直接访问一个对象中数据的实际显示,而应通过操作接口来访问,这称为信息隐藏。·统一接口(都是get、set)·提高程序的安全性,保护数据。属性私有(private),get/set。·隐藏代码的实现细节。2、student方法的实现。1、student方法。·该露的露,该藏的藏。·封装(数据的隐藏)