forked from mindspore-Ecosystem/mindspore
modify format
This commit is contained in:
parent
b92c76ca78
commit
5ef01a07c2
|
@ -3,4 +3,4 @@ mindspore.Tensor.det
|
|||
|
||||
.. py:method:: mindspore.Tensor.det()
|
||||
|
||||
:func:`mindspore.Tensor.matrix_determinant` 的别名。
|
||||
详情请参考 :func:`mindspore.ops.det`。
|
|
@ -3,4 +3,4 @@ mindspore.Tensor.swapaxes
|
|||
|
||||
.. py:method:: mindspore.Tensor.swapaxes(axis1, axis2)
|
||||
|
||||
详情请参考 :func:`mindspore.ops.swapaxes` 。
|
||||
详情请参考 :func:`mindspore.ops.swapaxes`。
|
||||
|
|
|
@ -2435,7 +2435,7 @@ class Tensor(Tensor_):
|
|||
|
||||
def det(self):
|
||||
r"""
|
||||
Refer to :func:`mindspore.ops.det`.
|
||||
For details, please refer to :func:`mindspore.ops.det`.
|
||||
"""
|
||||
self._init_check()
|
||||
return tensor_operator_registry.get('det')(self)
|
||||
|
|
|
@ -643,7 +643,7 @@ class ResizeLinear1D(Primitive):
|
|||
This is an experimental feature and is subjected to change.
|
||||
|
||||
Args:
|
||||
coordinate_transformation_mode (string): Default is 'align_corners'. Describes how to transform the coordinate
|
||||
coordinate_transformation_mode (str): Default is 'align_corners'. Describes how to transform the coordinate
|
||||
in the resized tensor to the coordinate in the original tensor. Other optional: 'half_pixel', 'asymmetric'.
|
||||
|
||||
Inputs:
|
||||
|
|
Loading…
Reference in New Issue