2.6K Star 8.6K Fork 4.8K

GVPMindSpore/mindspore

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
mindspore.ops.HistogramFixedWidth.rst 1.09 KB
一键复制 编辑 原始数据 按行查看 历史
刘勇琪 提交于 2024-02-01 10:08 . fix histogramfixedwidth bug

mindspore.ops.HistogramFixedWidth

.. py:class:: mindspore.ops.HistogramFixedWidth(nbins, dtype='int32')

    返回一个rank为1的直方图,该直方图中的每个组的值表示数量。每个组的宽度应该相等,且宽度由输入 `range` 和参数 `nbins` 决定。

    参数:
        - **nbins** (int) - 直方图的组数,类型为正整数。
        - **dtype** (str, 可选) - 可选属性。数据类型必须为str。默认值: ``'int32'`` 。

    输入:
        - **x** (Tensor) - HistogramFixedWidth的输入,为一个Tensor。数据类型必须为int32、float32、float16或float64。
        - **range** (Tensor) - 数据类型与 `x` 相同,shape为 :math:`(2,)` 。x <= range[0] 将映射到histogram[0],x >= range[1]将映射到histogram[-1]。

    输出:
        1-D Tensor,其长度为 `nbins` ,数据类型为int32。

    异常:
        - **TypeError** - 如果 `dtype` 不是str或 `nbins` 不是int。
        - **ValueError** - 如果 `nbins` 小于1。
        - **ValueError** - 如果 `dtype` 不是 "int32"。
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/mindspore/mindspore.git
git@gitee.com:mindspore/mindspore.git
mindspore
mindspore
mindspore
master

搜索帮助