mindspore.Tensor
- class mindspore.Tensor(input_data=None, dtype=None, shape=None, init=None, internal=False, const_arg=False, device=None)[source]
Tensor is a data structure that stores an n-dimensional array.
Note
If init interface is used to initialize Tensor, the Tensor.init_data API needs to be called to load the actual data to Tensor.
Warning
To convert dtype of a Tensor, it is recommended to use Tensor.astype() rather than Tensor(sourceTensor, dtype=newDtype).
- Parameters
input_data (Union[Tensor, float, int, bool, tuple, list, numpy.ndarray]) – The data to be stored. It can be another Tensor, Python number or NumPy ndarray. Default:
None
.dtype (
mindspore.dtype
) – Used to indicate the data type of the output Tensor. The argument should be defined in mindspore.dtype. If it isNone
, the data type of the output Tensor will be the same as the input_data. Default:None
.shape (Union[tuple, list, int,
mindspore.Symbol
]) – Used to indicate the shape of the output Tensor. If input_data is available, shape doesn't need to be set. IfNone
or Symbol exists in shape , a tensor of dynamic shape is created, input_data doesn't need to be set; if only integers exist in shape, a tensor of static shape is created, input_data or init must be set. Default:None
.init (Initializer) – The information of init data. init is used for delayed initialization in parallel mode, when using init, dtype and shape must be set. Default:
None
.internal (bool) – Whether it is created by the framework.
'True'
means that the tensor is created by framework.'False'
means that the tensor is created by user. Default:False
.const_arg (bool) – Whether the tensor is a constant when it is used for the argument of a network. Default:
False
.device (str) – This parameter is reserved and does not need to be configured. Default:
None
.
- Outputs:
Tensor.
Note
The default value
None
of input_data works as a placeholder, it does not mean that we can create a NoneType Tensor. Tensor with shape contains 0 is not fully tested and supported.Examples
>>> import numpy as np >>> import mindspore as ms >>> from mindspore import Tensor >>> from mindspore.common.initializer import One >>> # initialize a tensor with numpy.ndarray >>> t1 = Tensor(np.zeros([1, 2, 3]), ms.float32) >>> print(t1) [[[0. 0. 0.] [0. 0. 0.]]] >>> print(type(t1)) <class 'mindspore.common.tensor.Tensor'> >>> print(t1.shape) (1, 2, 3) >>> print(t1.dtype) Float32 >>> >>> # initialize a tensor with a float scalar >>> t2 = Tensor(0.1) >>> print(t2) 0.1 >>> print(type(t2)) <class 'mindspore.common.tensor.Tensor'> >>> print(t2.shape) () >>> print(t2.dtype) Float32 >>> >>> # initialize a tensor with a tuple >>> t3 = Tensor((1, 2)) >>> print(t3) [1 2] >>> print(type(t3)) <class 'mindspore.common.tensor.Tensor'> >>> print(t3.shape) (2,) >>> print(t3.dtype) Int64 ... >>> # initialize a tensor with init >>> t4 = Tensor(shape = (1, 3), dtype=ms.float32, init=One()) >>> print(t4) [[1. 1. 1.]] >>> print(type(t4)) <class 'mindspore.common.tensor.Tensor'> >>> print(t4.shape) (1, 3) >>> print(t4.dtype) Float32
For details, please refer to |
|
Alias for |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
Alias for |
|
For details, please refer to |
|
For details, please refer to |
|
Alias for |
|
For details, please refer to |
|
For details, please refer to |
|
Alias for |
|
Returns the indices of the maximum value along a specified axis of a Tensor. |
|
Returns the maximum value with corresponding index. |
|
For details, please refer to |
|
Returns the minimum value with corresponding index. |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
Convert tensor to numpy array. |
|
Assign another tensor value to this tensor. |
|
Return a copy of the tensor, cast to a specified type. |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
Converts input tensor dtype to bool. |
|
For details, please refer to |
|
Converts input tensor dtype to uint8. |
|
Fills the tensor with numbers drawn from the Cauchy distribution. |
|
Rounds a tensor up to the closest integer element-wise. |
|
For details, please refer to |
|
For details, please refer to |
|
Construct a tensor from an index tensor and a list of tensors to choose from. |
|
For details, please refer to |
|
Clamps tensor values between the specified minimum value and maximum value. |
|
clips tensor values between the specified minimum value and maximum value. |
|
For details, please refer to |
|
For details, please refer to |
|
Converts a Tensor into a continuous-memory Tensor that contains the same data as the original Tensor. |
|
Return a copy of the tensor. |
|
For details, please refer to |
|
Computes cosine of self element-wise. |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
Divides the first input tensor by the second input tensor in floating-point type element-wise. |
|
For details, please refer to :func:'mindspore.Tensor.div' |
|
For details, please refer to |
|
For details, please refer to |
|
Return the dtype of the tensor ( |
|
Computes the equivalence between two tensors element-wise. |
|
For details, please refer to |
|
Computes the Gauss error function of input element-wise. |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
Returns exponential of a tensor element-wise. |
|
Expand the dimension of target tensor to the dimension of input tensor. |
|
For details, please refer to |
|
For details, please refer to |
|
Fills the main diagonal of a Tensor with a specified value and returns the result. |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
Converts input tensor dtype to float32. |
|
For details, please refer to |
|
Rounds a tensor down to the closest integer element-wise. |
|
For details, please refer to |
|
Flush cache data to host if tensor is cache enable. |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
Convert numpy array to Tensor. |
|
Gather data from a tensor by indices. |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
Compare the value of the input parameters \(self > other\) element-wise, and the output result is a bool value. |
|
For details, please refer to |
|
For details, please refer to :func:'mindspore.Tensor.greater'. |
|
Returns a view of a matrix (2-D tensor) conjugated and transposed. |
|
Converts input tensor dtype to float16. |
|
For details, please refer to |
|
Whether tensor is initialized. |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
Returns a Tensor. |
|
Generates a new Tensor that accesses the values of self along the specified axis dimension using the indices specified in index. |
|
Get the tensor format data of this Tensor. |
|
For details, please refer to |
|
For details, please refer to |
|
Converts input tensor dtype to int32. |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
Returns a tensor of Boolean values indicating whether each element of input is "close" to the corresponding element of other. |
|
Determine which elements are finite for each position. |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
Judge whether the data type of tensor is a signed data type. |
|
For details, please refer to |
|
Determines whether the memory of tensor is contiguous. |
|
Get the item at the specified index of the tensor. |
|
Insert scalar into a tensor (scalar is cast to tensor's dtype, if possible). |
|
Return the length of one tensor element in bytes. |
|
For details, please refer to |
|
For details, please refer to |
|
Computes the boolean value of :math: self <= other element-wise. |
|
For details, please refer to |
|
Computes the boolean value of \(input < other\) element-wise. |
|
For more details, please refer to |
|
Returns the natural logarithm of a tensor element-wise. |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
Computes the "logical AND" of two tensors element-wise. |
|
Computes the "logical NOT" of a tensor element-wise. |
|
Computes the "logical OR" of two tensors element-wise. |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
Fills the elements of the input tensor with log normal values initialized by given mean and std: |
|
Converts input tensor dtype to int64. |
|
For more details, please refer to |
|
For details, please refer to |
|
Fills elements of Tensor with value where mask is True. |
|
Returns a Tensor. |
|
Returns a new 1-D Tensor which indexes the x tensor according to the boolean mask. |
|
Returns the matrix product of two tensors. |
|
Calculates the maximum value along with the given axis for the self tensor. |
|
Computes the maximum of input tensors element-wise. |
|
Reduces all dimension of a tensor by averaging all elements in the dimension, by default. |
|
For details, please refer to |
|
Accessing this property is equivalent to Calling self.adjoint(). |
|
Calculates the minimum value of the input tensor. |
|
Computes the minimum of input tensors element-wise. |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
Copy Tensor to target device synchronously or asynchronously, default synchronously. |
|
For details, please refer to |
|
Returns the Tensor that exchanges the last two dimensions. |
|
Multiplies two tensors element-wise. |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
Replace the NaN, positive infinity and negative infinity values of the self with the specified values in nan, posinf and neginf respectively. |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
Return the total number of bytes taken by the tensor. |
|
Return the number of tensor dimensions. |
|
Alias for |
|
Computes the non-equivalence of two tensors element-wise. |
|
Returns a tensor with negative values of the input tensor element-wise. |
|
Returns a tensor with negative values of the self tensor element-wise. |
|
Alias for |
|
Return a tensor of size filled with ones. |
|
Return a tensor of size filled with zeros. |
|
For details, please refer to |
|
For details, please refer to |
|
Alias for |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
Calculates the exponent power of each element in self. |
|
Reduces a dimension of a tensor by multiplying all elements in the dimension, by default. |
|
The name of the function comes from the acronym for "peak to peak". |
|
For details, please refer to |
|
For details, please refer to |
|
Return a contiguous flattened tensor. |
|
For details, please refer to |
|
Returns reciprocal of a tensor element-wise. |
|
Computes the remainder of self divided by other element-wise. |
|
For details, please refer to |
|
Repeat elements of a tensor. |
|
Repeat elements of a tensor along an axis, like numpy.repeat. |
|
Rearranges self Tensor based on the given shape. |
|
Change the shape of the Tensor to the shape of other without changing the data. |
|
Changes shape and size of tensor in-place. |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
Returns half to even of a tensor element-wise. |
|
For details, please refer to |
|
Computes reciprocal of square root of self tensor element-wise. |
|
Registers a backward hook for tensor. |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
Creates a new tensor by subtracting the values from the positions in self tensor indicated by indices, with values from updates. |
|
Finds indices where elements should be inserted to maintain order. |
|
For details, please refer to |
|
For details, please refer to |
|
Specify whether the tensor is a constant when it is used for the argument of a network. |
|
For details, please refer to |
|
For details, please refer to |
|
Return a copy of the tensor, cast to int16 type, equivalent to self.astype(mstype.int16). |
|
Computes Sigmoid of self element-wise. |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
Sorts the elements of the self tensor along the given dimension in the specified order. |
|
Splits the Tensor into chunks along the given axis. |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
Tensor's offset in the underlying storage in terms of the number of storage elements. |
|
The stride to jump from one element to the next in the input dim. |
|
Return the tuple of bytes to step in each dimension when traversing a tensor. |
|
For details, please refer to |
|
For details, please refer to |
|
Return sum of tensor elements over a given axis. |
|
Sum self Tensor to the size. |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
Return the transposed tensor. |
|
For details, please refer to |
|
Takes elements from a tensor along an axis. |
|
For details, please refer to |
|
Computes hyperbolic tangent of input element-wise. |
|
For details, please refer to |
|
Creates a new tensor by replicating self dims times. |
|
Returns a tensor with the new specified data type. |
|
Convert a Tensor to COOTensor. |
|
Convert a Tensor to CSRTensor. |
|
Convert a Tensor to List. |
|
For details, please refer to |
|
Return the sum along diagonals of the tensor. |
|
For details, please refer to |
|
transpose(input, diagonal=0) -> Tensor |
|
Returns the upper triangle part of 'self' (elements that contain the diagonal and below), and set the other elements to zeros. |
|
Alias for Tensor.div() with \(rounding\_mode=None\). |
|
Returns a new tensor with the truncated integer values of the elements of the input tensor. |
|
Change the dtype of the Tensor to the dtype . |
|
Change the dtype of the Tensor to the dtype of other. |
|
For details, please refer to |
|
For details, please refer to |
|
Generates random numbers in the half-open interval [from_, to). |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |
|
Compute the variance along the specified axis. |
|
Reshape the tensor according to the input shape. |
|
View self Tensor as the same shape as other . |
|
Selects elements from input or other based on condition and returns a tensor. |
|
For details, please refer to |
|
For details, please refer to |
|
For details, please refer to |