无python基础入门pytorch的一些笔记

Backward()

语法:backward(torch.ones(2, 2, dtype=torch.float))

对于最后的Tensor L执行backward()函数,会计算之前参与运算并生成当前Tensor的叶子Tensor的梯度。其梯度值会保存在叶子Tensor的.grad属性中。

www.cnblogs.com/laiyaling/p/12343844.html#:~:text=PyTorch提供了backward函数用于计算梯度%20%2C这一求解过程变为%3A%20L.backward%28torch.ones%282%2C,2%2C%20dtype%3Dtorch.float%29%29%20对于最后的Tensor%20L执行backward%28%29函数,会计算之前参与运算并生成当前Tensor的叶子Tensor的梯度。

List append()

语法:list.append(obj)

append() 方法用于在列表末尾添加新的对象。

www.runoob.com/python/att-list-append.html

Plt

%s

作用是将对象传到str()方法中进行处理,输出字符串。

https://blog.csdn.net/Leeeoplod/article/details/89243729

\t制表符

www.blog.csdn.net/weixin_45772041/article/details/108861310

zero_() → Tensor

Fills self tensor with zeros

https://pytorch.org/docs/1.2.0/tensors.html#torch.Tensor.zero_

zip()

语法:zip([iterable, ...])

zip() 函数用于将可迭代的对象作为参数,将对象中对应的元素打包成一个个元组,然后返回由这些元组组成的列表。

www.runoob.com/python/python-func-zip.html

你可能感兴趣的:(pytorch,deep,learning)