torch.cat(
tensor,
dim=0,
out=None)
功能:将张量按照维度dim进行拼接
tensor:张量序列
dim:要拼接的维度
torch.stack(
tensor,
dim=0,
out=None)
功能:在新创建的维度上进行拼接
tensor:张量序列
dim:要拼接的维度
注意
cat与stack同为拼接,但不同之处在于stack创建新的维度。
可以将cat理解为List的extend操作,stack理解为List的append操作。
torch.chunk(
input_data,
chunks,
dim=0)
功能:将张量按照维度dim进行平均切分
返回值:张量列表
input_data:要切分的张量
chunks:要切分的份数
dim:要切分的维度
注意:若不能整除则最后一份张量要小于其他张量
torch.split(
tensor,
split_size_or_sections,
dim=0)
功能:将张量按照维度dim进行切分
返回值:张量列表
tensor:要切分的张量
split_size_or_sections:
dim:要切分的维度
注意:当为int时,与chunk一样,当为list时,切分前后的大小必须相同
torch.index_select(
tensor,
dim,
index,
out=None)
功能:在维度dim上,按照index索引数据
返回值:依据index索引数据拼接的张量
tensor:要索引的张量
dim:要索引的维度
index:要索引数据的序号
torch.masked_select(
tensor,
mask,
out=None)
功能:按照mask中的True进行索引
返回值:一维张量
tensor:要索引的张量
mask:与tensor形状相同的布尔类型张量
注意:masked_select多用于筛选数据
torch,reshape(
tensor,
shape)
功能:变换张量形状
tensor:要变换的张量
shape:新张量的形状
注意:如果张量在内存中是连续的时候,新张量与原始张量共享内存
torch.transpose(
tensor,
dim0,
dim1)
功能:交换张量的两个维度
tensor:要交换的张量
dim0:要交换的维度
dim1:要交换的维度
torch.t(tensor)
功能:2维张量(矩阵)转置,等价于torch.transpose(tensor,0,1)
torch.squeeze(
tensor,
dim=None,
out=None)
功能:压缩长度为1的维度(轴)
dim:
torch.unsqueeze(
tensor,
dim,
out=None)
功能:依据dim扩展维度
dim:扩展的维度
张量的数学运算包含有:
torch.add()
torch.addcdiv()
torch.addcmul()
torch.sub()
torch.div()
torch.mul()
torch.log(tensor,out=None)
torch.log10(tensor,out=None)
torch.log2(tensor,out=None)
torch.exp(tensor,out=None)
torch.pow()
torch.abs(tensor,out=None)
torch.acos(tensor,out=None)
torch.cosh(tensor,out=None)
torch.cos(tensor,out=None)
torch.asin(tensor,out=None)
torch.atan(tensor,out=None)
torch.atan2(tensor,other,out=None)
torch.add(
tensor,
alpha=1,
other,
out=None)
功能:逐个元素计算
o u t = t e n s o r + a l p h a × o t h e r out=tensor+alpha\times other out=tensor+alpha×other
tensor:第一个张量
alpha:乘项因子
other:第二个张量
o u t = t e n s o r + v a l u e × t e n s o r 1 t e n s o r 2 out=tensor+value\times \frac{tensor_1}{tensor_2} out=tensor+value×tensor2tensor1
o u t = t e n s o r + v a l u e × t e n s o r 1 × t e n s o r 2 out=tensor+value\times tensor_1 \times tensor_2 out=tensor+value×tensor1×tensor2
线性回归是分析一个变量与另外一个(或多个)变量之间关系的方法。
因变量:y
自变量:x
关系:线性
y = w x + b y=wx+b y=wx+b
求解 w w w和 b b b的步骤: