forked from mindspore-Ecosystem/mindspore
commit
56ad341267
|
@ -3,4 +3,4 @@ mindspore.Tensor.det
|
||||||
|
|
||||||
.. py:method:: mindspore.Tensor.det()
|
.. py:method:: mindspore.Tensor.det()
|
||||||
|
|
||||||
:func:`mindspore.Tensor.matrix_determinant` 的别名。
|
详情请参考 :func:`mindspore.ops.det`。
|
|
@ -2435,7 +2435,7 @@ class Tensor(Tensor_):
|
||||||
|
|
||||||
def det(self):
|
def det(self):
|
||||||
r"""
|
r"""
|
||||||
Refer to :func:`mindspore.ops.det`.
|
For details, please refer to :func:`mindspore.ops.det`.
|
||||||
"""
|
"""
|
||||||
self._init_check()
|
self._init_check()
|
||||||
return tensor_operator_registry.get('det')(self)
|
return tensor_operator_registry.get('det')(self)
|
||||||
|
|
|
@ -643,7 +643,7 @@ class ResizeLinear1D(Primitive):
|
||||||
This is an experimental feature and is subjected to change.
|
This is an experimental feature and is subjected to change.
|
||||||
|
|
||||||
Args:
|
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'.
|
in the resized tensor to the coordinate in the original tensor. Other optional: 'half_pixel', 'asymmetric'.
|
||||||
|
|
||||||
Inputs:
|
Inputs:
|
||||||
|
|
Loading…
Reference in New Issue