Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleClas
提交
3e4af044
P
PaddleClas
项目概览
PaddlePaddle
/
PaddleClas
大约 1 年 前同步成功
通知
115
Star
4999
Fork
1114
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
19
列表
看板
标记
里程碑
合并请求
6
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleClas
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
19
Issue
19
列表
看板
标记
里程碑
合并请求
6
合并请求
6
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
3e4af044
编写于
6月 04, 2021
作者:
W
weishengyu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add default metrics
上级
5dc93ac0
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
33 addition
and
36 deletion
+33
-36
ppcls/engine/trainer.py
ppcls/engine/trainer.py
+31
-34
ppcls/metric/__init__.py
ppcls/metric/__init__.py
+1
-1
ppcls/metric/metrics.py
ppcls/metric/metrics.py
+1
-1
未找到文件。
ppcls/engine/trainer.py
浏览文件 @
3e4af044
...
...
@@ -93,37 +93,17 @@ class Trainer(object):
self
.
train_metric_func
=
None
self
.
eval_metric_func
=
None
def
_build_metric_info
(
self
,
metric_config
,
mode
=
"train"
):
"""
_build_metric_info: build metrics according to current mode
Return:
metric: dict of the metrics info
"""
metric
=
None
mode
=
mode
.
capitalize
()
if
mode
in
metric_config
and
metric_config
[
mode
]
is
not
None
:
metric
=
build_metrics
(
metric_config
[
mode
])
return
metric
def
_build_loss_info
(
self
,
loss_config
,
mode
=
"train"
):
"""
_build_loss_info: build loss according to current mode
Return:
loss_dict: dict of the loss info
"""
loss
=
None
mode
=
mode
.
capitalize
()
if
mode
in
loss_config
and
loss_config
[
mode
]
is
not
None
:
loss
=
build_loss
(
loss_config
[
mode
])
return
loss
def
train
(
self
):
# build train loss and metric info
if
self
.
train_loss_func
is
None
:
self
.
train_loss_func
=
self
.
_build_loss_info
(
self
.
config
[
"Loss"
])
if
"Metric"
in
self
.
config
and
self
.
train_metric_func
is
None
:
self
.
train_metric_func
=
self
.
_build_metric_info
(
self
.
config
[
"Metric"
])
self
.
train_loss_func
=
build_loss
(
self
.
config
[
"Loss"
])
if
self
.
train_metric_func
is
None
:
metric_config
=
self
.
config
.
get
(
"Metric"
,
None
)
if
metric_config
is
None
:
metric_config
=
[{
"name"
:
"TopkAcc"
,
"topk"
:
(
1
,
5
)}]
else
:
metric_config
=
metric_config
[
"Train"
]
self
.
train_metric_func
=
build_metrics
(
metric_config
)
if
self
.
train_dataloader
is
None
:
self
.
train_dataloader
=
build_dataloader
(
self
.
config
[
"DataLoader"
],
...
...
@@ -241,10 +221,26 @@ class Trainer(object):
@
paddle
.
no_grad
()
def
eval
(
self
,
epoch_id
=
0
):
self
.
model
.
eval
()
if
self
.
eval_loss_func
is
None
:
loss_info
=
self
.
config
.
get
(
"Loss"
,
None
)
if
loss_info
is
None
:
loss_info
=
[{
"CELoss"
:
{
"weight"
:
1.0
}}]
else
:
loss_info
=
loss_info
[
"Eval"
]
self
.
eval_loss_func
=
build_loss
(
loss_info
)
if
self
.
eval_mode
==
"classification"
:
if
self
.
eval_dataloader
is
None
:
self
.
eval_dataloader
=
build_dataloader
(
self
.
config
[
"DataLoader"
],
"Eval"
,
self
.
device
)
if
self
.
eval_metric_func
is
None
:
metric_config
=
self
.
config
.
get
(
"Metric"
,
None
)
if
metric_config
is
None
:
metric_config
=
[{
"name"
:
"TopkAcc"
,
"topk"
:
(
1
,
5
)}]
else
:
metric_config
=
metric_config
[
"Eval"
]
self
.
eval_metric_func
=
build_metrics
(
metric_config
)
eval_result
=
self
.
eval_cls
(
epoch_id
)
elif
self
.
eval_mode
==
"retrieval"
:
...
...
@@ -255,13 +251,14 @@ class Trainer(object):
if
self
.
query_dataloader
is
None
:
self
.
query_dataloader
=
build_dataloader
(
self
.
config
[
"DataLoader"
],
"Query"
,
self
.
device
)
# build train loss and metric info
if
self
.
eval_loss_func
is
None
:
self
.
eval_loss_func
=
self
.
_build_loss_info
(
self
.
config
[
"Loss"
],
"eval"
)
# build metric info
if
self
.
eval_metric_func
is
None
:
self
.
eval_metric_func
=
self
.
_build_metric_info
(
self
.
config
[
"Metric"
],
"eval"
)
metric_config
=
self
.
config
.
get
(
"Metric"
,
None
)
if
metric_config
is
None
:
metric_config
=
[{
"name"
:
"Recallk"
,
"topk"
:
(
1
,
5
)}]
else
:
metric_config
=
metric_config
[
"Eval"
]
self
.
eval_metric_func
=
build_metrics
(
metric_config
)
eval_result
=
self
.
eval_retrieval
(
epoch_id
)
else
:
logger
.
warning
(
"Invalid eval mode: {}"
.
format
(
self
.
eval_mode
))
...
...
ppcls/metric/__init__.py
浏览文件 @
3e4af044
...
...
@@ -16,7 +16,7 @@ from paddle import nn
import
copy
from
collections
import
OrderedDict
from
.metrics
import
Topk
,
mAP
,
mINP
,
Recallk
from
.metrics
import
Topk
Acc
,
mAP
,
mINP
,
Recallk
class
CombinedMetrics
(
nn
.
Layer
):
...
...
ppcls/metric/metrics.py
浏览文件 @
3e4af044
...
...
@@ -18,7 +18,7 @@ import paddle.nn as nn
# TODO: fix the format
class
Topk
(
nn
.
Layer
):
class
Topk
Acc
(
nn
.
Layer
):
def
__init__
(
self
,
topk
=
(
1
,
5
)):
super
().
__init__
()
assert
isinstance
(
topk
,
(
int
,
list
,
tuple
))
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录