.item()函数用法

>>> x = torch.tensor([1.0]) 
>>>> x.item() 
1.0

用来将tensor格式转化为python的数据类型格式。

你可能感兴趣的:(代码,python,深度学习)