mindspore/docs/api/api_python/ops/mindspore.ops.SpaceToDepth.rst

33 lines
943 B
ReStructuredText
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

mindspore.ops.SpaceToDepth
==========================
.. py:class:: mindspore.ops.SpaceToDepth(block_size)
将空间维度分块增加Tensor深度。
输出Tensor的高度为输入高度 / `block_size`
输出Tensor的宽度为输入宽度 / `block_size`
输出Tensor的深度为输入深度 * `block_size` * `block_size`)。
输入Tensor的高度和宽度必须可被 `block_size` 整除,格式为"NCHW"batch_size深度高度宽度
**参数:**
- **block_size** (int):用于划分空间维度的子块的大小。必须>=2。
**输入:**
- **x** (Tensor) - 4维Tensor。数据类型为Number。
**输出:**
4维Tensor数据类型与 `x` 相同。
**异常:**
- **TypeError** - `block_size` 不是int类型。
- **ValueError** - `block_size` 小于2。
- **ValueError** - `x` 的维度不为4。