pytorch torch.Tensor.clone()(返回张量自身的副本。 副本具有与自身相同的大小和数据类型。)
生活随笔
收集整理的這篇文章主要介紹了
pytorch torch.Tensor.clone()(返回张量自身的副本。 副本具有与自身相同的大小和数据类型。)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
https://pytorch.org/docs/1.1.0/tensors.html?highlight=clone#torch.Tensor.clone
clone() → Tensor
Returns a copy of the self tensor. The copy has the same size and data type as self.
返回張量自身的副本。 副本具有與自身相同的大小和數據類型。
NOTE
Unlike copy_(), this function is recorded in the computation graph. Gradients propagating to the cloned tensor will propagate to the original tensor.
與copy_()不同,此函數記錄在計算圖中。 傳播到克隆張量的漸變將傳播到原始張量。
總結
以上是生活随笔為你收集整理的pytorch torch.Tensor.clone()(返回张量自身的副本。 副本具有与自身相同的大小和数据类型。)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: NumPy复制数组之浅拷贝和深拷贝(注意
- 下一篇: pytorch torch.item()