Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
FluidDoc
提交
7664d021
F
FluidDoc
项目概览
PaddlePaddle
/
FluidDoc
通知
5
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
23
列表
看板
标记
里程碑
合并请求
111
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
F
FluidDoc
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
23
Issue
23
列表
看板
标记
里程碑
合并请求
111
合并请求
111
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
7664d021
编写于
8月 27, 2020
作者:
Z
Zhang Ting
提交者:
GitHub
8月 27, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add dtype for unique (#2501)
* add float16 dtype, test=develop * add type for unique * add unique doc
上级
fbbecbf2
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
56 addition
and
2 deletion
+56
-2
doc/fluid/api_cn/layers_cn/unique_cn.rst
doc/fluid/api_cn/layers_cn/unique_cn.rst
+1
-1
doc/fluid/api_cn/tensor_cn/unique_cn.rst
doc/fluid/api_cn/tensor_cn/unique_cn.rst
+2
-1
doc/paddle/api/paddle/tensor/manipulation/unique_cn.rst
doc/paddle/api/paddle/tensor/manipulation/unique_cn.rst
+53
-0
未找到文件。
doc/fluid/api_cn/layers_cn/unique_cn.rst
浏览文件 @
7664d021
...
...
@@ -9,7 +9,7 @@ unique为 ``x`` 返回一个unique张量和一个指向该unique张量的索引
参数:
- **x** (Tensor) - 一个1维输入张量
- **dtype** (np.dtype|str
) – 索引张量的类型,int32,int64。
- **dtype** (np.dtype|str
, 可选) – 索引张量的类型,应该为int32或者int64。默认:int32.
返回:元组(out, index)。 ``out`` 为 ``x`` 的指定dtype的unique张量, ``index`` 是一个指向 ``out`` 的索引张量, 用户可以通过该函数来转换原始的 ``x`` 张量的索引。
...
...
doc/fluid/api_cn/tensor_cn/unique_cn.rst
浏览文件 @
7664d021
...
...
@@ -3,7 +3,7 @@
unique
-------------------------------
.. py:function:: paddle.unique(x, return_index=False, return_inverse=False, return_counts=False, axis=None, name=None)
.. py:function:: paddle.unique(x, return_index=False, return_inverse=False, return_counts=False, axis=None,
dtype="int64",
name=None)
返回Tensor按升序排序后的独有元素。
...
...
@@ -13,6 +13,7 @@ unique
- **return_inverse** (bool, 可选) - 如果为True,则还返回输入Tensor的元素对应在独有元素中的索引,该索引可用于重构输入Tensor。
- **return_counts** (bool, 可选) - 如果为True,则还返回每个独有元素在输入Tensor中的个数。
- **axis** (int, 可选) - 指定选取独有元素的轴。默认值为None,将输入平铺为1-D的Tensor后再选取独有元素。
- **dtype** (np.dtype|str, 可选) - 用于设置 `index`,`inverse` 或者 `counts` 的类型,应该为int32或者int64。默认:int64.
- **name** (str,可选)- 具体用法请参见 :ref:`api_guide_Name` ,一般无需设置,默认值为None。
返回:
...
...
doc/paddle/api/paddle/tensor/manipulation/unique_cn.rst
0 → 100644
浏览文件 @
7664d021
.. _cn_api_tensor_cn_unique:
unique
-------------------------------
.. py:function:: paddle.unique(x, return_index=False, return_inverse=False, return_counts=False, axis=None, dtype="int64", name=None)
返回Tensor按升序排序后的独有元素。
参数:
- **x** (Tensor) - 输入的 `Tensor` ,数据类型为:float32、float64、int32、int64。
- **return_index** (bool, 可选) - 如果为True,则还返回独有元素在输入Tensor中的索引。
- **return_inverse** (bool, 可选) - 如果为True,则还返回输入Tensor的元素对应在独有元素中的索引,该索引可用于重构输入Tensor。
- **return_counts** (bool, 可选) - 如果为True,则还返回每个独有元素在输入Tensor中的个数。
- **axis** (int, 可选) - 指定选取独有元素的轴。默认值为None,将输入平铺为1-D的Tensor后再选取独有元素。
- **dtype** (np.dtype|str, 可选) - 用于设置 `index`,`inverse` 或者 `counts` 的类型,应该为int32或者int64。默认:int64.
- **name** (str,可选)- 具体用法请参见 :ref:`api_guide_Name` ,一般无需设置,默认值为None。
返回:
- **out** (Tensor) - 独有元素构成的Tensor,数据类型与输入一致。
- **index** (Tensor, 可选) - 独有元素在输入Tensor中的索引,仅在 `return_index` 为True时返回。
- **inverse** (Tensor, 可选) - 输入Tensor的元素对应在独有元素中的索引,仅在 `return_inverse` 为True时返回。
- **counts** (Tensor, 可选) - 每个独有元素在输入Tensor中的个数,仅在 `return_counts` 为True时返回。
**代码示例**:
.. code-block:: python
import numpy as np
import paddle
paddle.disable_static()
x_data = np.array([2, 3, 3, 1, 5, 3])
x = paddle.to_tensor(x_data)
unique = paddle.unique(x)
np_unique = unique.numpy() # [1 2 3 5]
_, indices, inverse, counts = paddle.unique(x, return_index=True, return_inverse=True, return_counts=True)
np_indices = indices.numpy() # [3 0 1 4]
np_inverse = inverse.numpy() # [1 2 2 0 3 2]
np_counts = counts.numpy() # [1 1 3 1]
x_data = np.array([[2, 1, 3], [3, 0, 1], [2, 1, 3]])
x = paddle.to_tensor(x_data)
unique = paddle.unique(x)
np_unique = unique.numpy() # [0 1 2 3]
unique = paddle.unique(x, axis=0)
np_unique = unique.numpy()
# [[2 1 3]
# [3 0 1]]
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录