to_tensor

paddle. to_tensor ( data, dtype=None, place=None, stop_gradient=True ) [源代码]

该API通过已知的 data 来创建一个 tensor,tensor类型为 paddle.Tensordata 可以是 scalar,tuple,list,numpy.ndarray,paddle.Tensor。

如果 data 已经是一个tensor,且 dtypeplace 没有发生变化,将不会发生 tensor 的拷贝并返回原来的 tensor。 否则会创建一个新的tensor,且不保留原来计算图。

参数:

  • data (scalar|tuple|list|ndarray|Tensor) - 初始化tensor的数据,可以是 scalar,list,tuple,numpy.ndarray,paddle.Tensor类型。

  • dtype (str, optional) - 创建tensor的数据类型,可以是 ‘bool’ ,’float16’,’float32’, ‘float64’ ,’int8’,’int16’,’int32’,’int64’,’uint8’,’complex64’,’complex128’。 默认值为None,如果 data 为python浮点类型,则从 get_default_dtype 获取类型,如果 data 为其他类型, 则会自动推导类型。

  • place (CPUPlace|CUDAPinnedPlace|CUDAPlace, optional) - 创建tensor的设备位置,可以是 CPUPlace, CUDAPinnedPlace, CUDAPlace。默认值为None,使用全局的place。

  • stop_gradient (bool, optional) - 是否阻断Autograd的梯度传导。默认值为True,此时不进行梯度传传导。

返回:通过 data 创建的 tensor。

抛出异常:

  • TypeError: 当 data 不是 scalar,list,tuple,numpy.ndarray,paddle.Tensor类型时

  • ValueError: 当 data 是包含不等长子序列的tuple或list时, 例如[[1, 2], [3, 4, 5]]

  • TypeError: 当 dtype 不是 bool,float16,float32,float64,int8,int16,int32,int64,uint8,complex64,complex128时

  • ValueError: 当 place 不是 paddle.CPUPlace,paddle.CUDAPinnedPlace,paddle.CUDAPlace时

代码示例

  1. import paddle
  2. type(paddle.to_tensor(1))
  3. # <class 'paddle.Tensor'>
  4. paddle.to_tensor(1)
  5. # Tensor: generated_tensor_0
  6. # - place: CUDAPlace(0) # allocate on global default place CPU:0
  7. # - shape: [1]
  8. # - layout: NCHW
  9. # - dtype: int64_t
  10. # - data: [1]
  11. x = paddle.to_tensor(1)
  12. paddle.to_tensor(x, dtype='int32', place=paddle.CPUPlace()) # A new tensor will be constructed due to different dtype or place
  13. # Tensor: generated_tensor_01
  14. # - place: CPUPlace
  15. # - shape: [1]
  16. # - layout: NCHW
  17. # - dtype: int
  18. # - data: [1]
  19. paddle.to_tensor((1.1, 2.2), place=paddle.CUDAPinnedPlace())
  20. # Tensor: generated_tensor_1
  21. # - place: CUDAPinnedPlace
  22. # - shape: [2]
  23. # - layout: NCHW
  24. # - dtype: double
  25. # - data: [1.1 2.2]
  26. paddle.to_tensor([[0.1, 0.2], [0.3, 0.4]], place=paddle.CUDAPlace(0), stop_gradient=False)
  27. # Tensor: generated_tensor_2
  28. # - place: CUDAPlace(0)
  29. # - shape: [2, 2]
  30. # - layout: NCHW
  31. # - dtype: double
  32. # - data: [0.1 0.2 0.3 0.4]
  33. type(paddle.to_tensor([[1+1j, 2], [3+2j, 4]], dtype='complex64'))
  34. # <class 'paddle.VarBase'
  35. paddle.to_tensor([[1+1j, 2], [3+2j, 4]], dtype='complex64')
  36. # Tensor(shape=[2, 2], dtype=complex64, place=CUDAPlace(0), stop_gradient=True,
  37. # [[(1+1j), (2+0j)],
  38. # [(3+2j), (4+0j)]])

使用本API的教程文档