Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Crayon鑫
Paddle
提交
728d5b3a
P
Paddle
项目概览
Crayon鑫
/
Paddle
与 Fork 源项目一致
Fork自
PaddlePaddle / Paddle
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
728d5b3a
编写于
8月 24, 2022
作者:
W
wangzhen38
提交者:
GitHub
8月 24, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[DOC FIX]fix code demo of auc (#45200)
* [DOC FIX]fix code demo of auc * [doc fix] fix doc of auc
上级
78916a7a
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
13 addition
and
12 deletion
+13
-12
python/paddle/fluid/layers/metric_op.py
python/paddle/fluid/layers/metric_op.py
+13
-12
未找到文件。
python/paddle/fluid/layers/metric_op.py
浏览文件 @
728d5b3a
...
...
@@ -164,7 +164,7 @@ def auc(input,
batch_stat_pos, batch_stat_neg, stat_pos, stat_neg ]
Data type is Tensor, supporting float32, float64.
Examples
1
:
Examples:
.. code-block:: python
import paddle
...
...
@@ -173,8 +173,8 @@ def auc(input,
data = paddle.static.data(name="input", shape=[-1, 32,32], dtype="float32")
label = paddle.static.data(name="label", shape=[-1], dtype="int")
fc_out = paddle.static.nn.fc(
input
=data, size=2)
predict = paddle.nn.functional.softmax(
input
=fc_out)
fc_out = paddle.static.nn.fc(
x
=data, size=2)
predict = paddle.nn.functional.softmax(
x
=fc_out)
result=paddle.static.auc(input=predict, label=label)
place = paddle.CPUPlace()
...
...
@@ -186,19 +186,18 @@ def auc(input,
output= exe.run(feed={"input": x,"label": y},
fetch_list=[result[0]])
print(output)
#[array([0.5])]
Examples 2:
.. code-block:: python
#you can learn the usage of ins_tag_weight by the following code.
'''
import paddle
import numpy as np
paddle.enable_static()
data = paddle.static.data(name="input", shape=[-1, 32,32], dtype="float32")
label = paddle.static.data(name="label", shape=[-1], dtype="int")
fc_out = paddle.static.nn.fc(input=data, size=2
)
predict = paddle.nn.functional.softmax(input=fc_out
)
ins_tag_weight = paddle.static.data(name='ins_tag', shape=[-1,16], lod_level=0, dtype='int64'
)
ins_tag_weight = paddle.static.data(name='ins_tag', shape=[-1,16], lod_level=0, dtype='float64'
)
fc_out = paddle.static.nn.fc(x=data, size=2
)
predict = paddle.nn.functional.softmax(x=fc_out
)
result=paddle.static.auc(input=predict, label=label, ins_tag_weight=ins_tag_weight)
place = paddle.CPUPlace()
...
...
@@ -207,10 +206,12 @@ def auc(input,
exe.run(paddle.static.default_startup_program())
x = np.random.rand(3,32,32).astype("float32")
y = np.array([1,0,1])
output= exe.run(feed={"input": x,"label": y},
z = np.array([1,0,1])
output= exe.run(feed={"input": x,"label": y, "ins_tag_weight":z},
fetch_list=[result[0]])
print(output)
#[array([0.5])]
'''
"""
helper
=
LayerHelper
(
"auc"
,
**
locals
())
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录