Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleHub
提交
9894fbb1
P
PaddleHub
项目概览
PaddlePaddle
/
PaddleHub
大约 1 年 前同步成功
通知
282
Star
12117
Fork
2091
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
200
列表
看板
标记
里程碑
合并请求
4
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleHub
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
200
Issue
200
列表
看板
标记
里程碑
合并请求
4
合并请求
4
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
9894fbb1
编写于
7月 07, 2020
作者:
H
HawChang
提交者:
GitHub
7月 07, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix multilabel predict res label name wrong bug on v1.7 (#736)
Co-authored-by:
N
zhanghao55
<
zhanghao55@baidu.com
>
上级
7faf09eb
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
6 addition
and
5 deletion
+6
-5
paddlehub/finetune/task/classifier_task.py
paddlehub/finetune/task/classifier_task.py
+6
-5
未找到文件。
paddlehub/finetune/task/classifier_task.py
浏览文件 @
9894fbb1
...
...
@@ -335,7 +335,6 @@ class MultiLabelClassifierTask(ClassifierTask):
config
=
config
,
hidden_units
=
hidden_units
,
metrics_choices
=
metrics_choices
)
self
.
class_name
=
list
(
data_reader
.
label_map
.
keys
())
def
_build_net
(
self
):
cls_feats
=
fluid
.
layers
.
dropout
(
...
...
@@ -415,7 +414,8 @@ class MultiLabelClassifierTask(ClassifierTask):
# NOTE: for MultiLabelClassifierTask, the metrics will be used to evaluate all the label
# and their mean value will also be reported.
for
index
,
auc
in
enumerate
(
auc_list
):
scores
[
"auc_"
+
self
.
class_name
[
index
]]
=
auc_list
[
index
][
0
]
scores
[
"auc_"
+
self
.
_base_data_reader
.
dataset
.
label_list
[
index
]]
=
auc_list
[
index
][
0
]
else
:
raise
ValueError
(
"Not Support Metric:
\"
%s
\"
"
%
metric
)
return
scores
,
avg_loss
,
run_speed
...
...
@@ -428,7 +428,6 @@ class MultiLabelClassifierTask(ClassifierTask):
def
_postprocessing
(
self
,
run_states
):
results
=
[]
label_list
=
list
(
self
.
_base_data_reader
.
label_map
.
keys
())
for
batch_state
in
run_states
:
batch_result
=
batch_state
.
run_results
for
sample_id
in
range
(
len
(
batch_result
[
0
])):
...
...
@@ -437,7 +436,9 @@ class MultiLabelClassifierTask(ClassifierTask):
self
.
_base_data_reader
.
dataset
.
num_labels
):
sample_category_prob
=
batch_result
[
category_id
][
sample_id
]
sample_category_value
=
np
.
argmax
(
sample_category_prob
)
sample_result
.
append
(
{
label_list
[
category_id
]:
sample_category_value
})
sample_result
.
append
({
self
.
_base_data_reader
.
dataset
.
label_list
[
category_id
]:
sample_category_value
})
results
.
append
(
sample_result
)
return
results
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录