torch.nn.Parameter(Tensor data, bool requires_grad)
torch.nn.Parameter继承torch.Tensor类,其功能为将不可训练的Tensor类参数转化为可训练的Parameter类参数,并将这个参数绑定到module中,成为module中可训练的参数。
torch.nn.Parameter继承torch.Tensor类,其功能为将不可训练的Tensor类参数转化为可训练的Parameter类参数,并将这个参数绑定到module中,成为module中可训练的参数。
zip() 函数用于将可迭代的对象作为参数,将对象中对应的元素打包成一个个元组,然后返回由这些元组组成的列表。