torch 学习笔记

1. torch.Tensor 生成一个 tensor 类型。 >>> import torch >>> x=torch.Tensor([[1,2,3],[4,5,6]]) >>> x tensor([[1., 2., 3.], ...