2.6K Star 8.6K Fork 4.8K

GVPMindSpore/mindspore

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
mindspore.nn.ChannelShuffle.rst 894 Bytes
一键复制 编辑 原始数据 按行查看 历史
俞涵 提交于 2023-09-05 17:22 . modify format

mindspore.nn.ChannelShuffle

.. py:class:: mindspore.nn.ChannelShuffle(groups)

    将shape为 :math:`(*, C, H, W)` 的Tensor的通道划分成 :math:`g` 组,得到shape为 :math:`(*, C \frac g, g, H, W)` 的Tensor,并沿着 :math:`C` 和 :math:`\frac{g}{}`, :math:`g` 对应轴进行转置,将Tensor还原成原有的shape。

    参数:
        - **groups** (int) - 划分通道的组数,必须大于0。在上述公式中表示为 :math:`g` 。

    输入:
        - **x** (Tensor) - Tensor的shape :math:`(*, C_{in}, H_{in}, W_{in})` 。

    输出:
        Tensor,数据类型和shape与 `x` 相同。

    异常:
        - **TypeError** - `groups` 非正整数。
        - **ValueError** - `groups` 小于1。
        - **ValueError** - `x` 的维度小于3。
        - **ValueError** - `x` 的通道数不能被 `groups` 整除。
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/mindspore/mindspore.git
git@gitee.com:mindspore/mindspore.git
mindspore
mindspore
mindspore
master

搜索帮助