!38975 remove arange api

Merge pull request !38975 from shaojunsong/code_docs_arange
This commit is contained in:
i-robot 2022-07-27 12:30:12 +00:00 committed by Gitee
commit 917c83e2cf
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
1 changed files with 0 additions and 19 deletions

View File

@ -1,19 +0,0 @@
mindspore.ops.arange
===============================
.. py:function:: mindspore.ops.arange(start=0, stop=None, step=1, rtype=None)
根据给定的范围返回指定均匀间隔的数据。
参数:
- **start** (Union[int, float]) - 指定范围的起始值范围包含该值。类型为int或float。
- **stop** (Union[int, float]) - 指定范围的结束值范围不包含该值。类型为int或float。
- **step** (Union[int, float]) - 指定取值的间隔。类型为int或float。
- **rtype** (Union[mindspore.dtype, str]) - 指定返回数据的类型,如果不指定,则会根据 `start``stop``step` 的值推断类型。
返回:
Tensor值是均匀间隔的数据类型为给定或推断的结果。
异常:
- **TypeError** - `start``stop``step` 的类型不是int或float。
- **ValueError** - `start` 的值大于等于 `stop`