张量高于标量、向量、矩阵
标量说零维的张量,向量是一维的张量,矩阵是二维的张量
函数 | 功能 |
---|---|
Tensor(*size) | 基础构造函数 |
Tensor(data) | 类似np.array |
ones(*size) | 全1Tensor |
zeros(*size) | 全0Tensor |
eye(*size) | 对角线为1,其他为0 |
arange(s,e,step) | 从s到e,步长为step |
linspace(s,e,steps) | 从s到e,均匀切分成steps份 |
rand/randn(*size) | 均匀/标准分布 |
normal(mean,std)/uniform_(from,to) | 正态分布/均匀分布 |
randperm(m) | 随机排列 |
torch.tensor([1,2,3],dtype=torch.float32,device=torch.device('cpu'))
indices = torch.tensor([0,1,1],[2,0,2]])
values = torch.tensor([3,4,5],dtype=torch.float32)
x = torch.sparse_coo_tensor(i,v,[2,4])
dev = torch.device("cpu")
torch.tensor([2,2],device=dev)
torch.tensor([2,2],dtype=torch.float32,device=dev)
i=torch.tensor([[0,1,2],[0,1,2]])
v=torch.tensor([1,2,3])
torch.sparse_coo_tensor(i,v,(4,4))
torch.sparse_coo_tensor(i,v,(4,4)).to_dense()
c=a+b
c=torch.add(a,b)
a.add(b)
a.add_(b)#会修改a的值
c=a-b
c=torch.sub(a,b)
a.sub(b)
a.sub_(b)#会修改a的值
c=a*b
c=torch.mul(a,b)
a.mul(b)
a.mul_(b)
c=a/b
c=torch.div(a,b)
a.div(b)
a.div_(b)
a=torch.ones(2,1)
b=torch.ones(1,2)
print(torch.mm(a,b))
print(torch.matmul(a,b))
print(a@b)
print(a.matmul(b))
print(a.mm(b))
a=torch.ones(1,2,3,4)
b=torch.ones(1,2,4,3)
print(a.matmul(b))
print(torch.matmul(a,b))
print(torch.pow(a,2))
print(a.pow(2))
print(a**2)
print(a.pow_(2))
print(torch.exp(a))
b=a.exp_()
a.sqrt()
a.sqrt_()
torch.log2(a)
torch.log10(a)
torch.log(a)
torch.log_(a)
torch.eq(input,other, out=None) #按成员进行等式操作,相同返回True
torch.equal(tensor1,tensor2) #如果tensor1和tensor2有相同的size和elements,则为true
torch.ge(input, other, out=None) #input>= other
torch.gt(input, other, out=None) #input>other
torch.le(input, other, out=None) #input=
torch.lt(input, other, out=None) #input
torch.ne(input, other, out=None) #input != other 不等于
torch.sort(input, dim=None, descending=False, out=None)
#对目标input进行排序
torch.topk(input, k,dim=None, largest=True, sorted=Trueout=None)
#沿着指定维度返回最大k个数值及其索引值
torch.kthvalue(input, k, dim=None, out=None)
#沿着指定维度返回第k个最小值及其索引值
torch.isfinite(tensor)/torch.isinf(tensor)/torch.isnan(tensor)
返回一个标记元素是否为 finite/inf/nan 的mask 张量