Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleDetection
提交
a7a825b4
P
PaddleDetection
项目概览
PaddlePaddle
/
PaddleDetection
大约 1 年 前同步成功
通知
695
Star
11112
Fork
2696
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
184
列表
看板
标记
里程碑
合并请求
40
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleDetection
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
184
Issue
184
列表
看板
标记
里程碑
合并请求
40
合并请求
40
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
a7a825b4
编写于
10月 23, 2019
作者:
Q
qingqing01
提交者:
GitHub
10月 23, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Update parameter loadding (#3735)
上级
0b7f5d7f
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
16 addition
and
8 deletion
+16
-8
README.md
README.md
+1
-1
docs/GETTING_STARTED_cn.md
docs/GETTING_STARTED_cn.md
+4
-0
ppdet/utils/checkpoint.py
ppdet/utils/checkpoint.py
+7
-3
tools/train.py
tools/train.py
+4
-4
未找到文件。
README.md
浏览文件 @
a7a825b4
...
...
@@ -64,7 +64,7 @@ Advanced Features:
## Get Started
-
[
Installation guide
](
docs/INSTALL.md
)
-
[
Quick
S
tart on small dataset
](
docs/QUICK_STARTED.md
)
-
[
Quick
s
tart on small dataset
](
docs/QUICK_STARTED.md
)
-
[
Guide to traing, evaluate and arguments description
](
docs/GETTING_STARTED.md
)
-
[
Guide to preprocess pipeline and custom dataset
](
docs/DATA.md
)
-
[
Introduction to the configuration workflow
](
docs/CONFIG.md
)
...
...
docs/GETTING_STARTED_cn.md
浏览文件 @
a7a825b4
...
...
@@ -180,3 +180,7 @@ batch size可以达到每GPU 4 (Tesla V100 16GB)。
**Q:**
如何修改数据预处理?
</br>
**A:**
可在配置文件中设置
`sample_transform`
。注意需要在配置文件中加入
**完整预处理**
例如RCNN模型中
`DecodeImage`
,
`NormalizeImage`
and
`Permute`
。更多详细描述请参考
[
配置案例
](
config_example
)
。
**Q:**
affine_channel和batch norm是什么关系?
**A:**
在RCNN系列模型加载预训练模型初始化,有时候会固定住batch norm的参数, 使用预训练模型中的全局均值和方式,并且batch norm的scale和bias参数不更新,已发布的大多ResNet系列的RCNN模型采用这种方式。这种情况下可以在config中设置norm_type为bn或affine_channel, freeze_norm为true (默认为true),两种方式等价。affne_channel的计算方式为
`scale * x + bias`
。只不过设置affine_channel时,内部对batch norm的参数自动做了融合。如果训练使用的affine_channel,用保存的模型做初始化,训练其他任务时,即可使用affine_channel, 也可使用batch norm, 参数均可正确加载。
ppdet/utils/checkpoint.py
浏览文件 @
a7a825b4
...
...
@@ -177,7 +177,8 @@ def load_and_fusebn(exe, prog, path):
prog (fluid.Program): save weight from which Program object.
path (string): the path to save model.
"""
logger
.
info
(
'Load model and fuse batch norm from {}...'
.
format
(
path
))
logger
.
info
(
'Load model and fuse batch norm if have from {}...'
.
format
(
path
))
if
is_url
(
path
):
path
=
_get_weight_path
(
path
)
...
...
@@ -253,8 +254,11 @@ def load_and_fusebn(exe, prog, path):
[
scale_name
,
bias_name
,
mean_name
,
variance_name
])
if
not
bn_in_path
:
raise
ValueError
(
"There is no params of batch norm in model {}."
.
format
(
path
))
fluid
.
io
.
load_vars
(
exe
,
path
,
prog
,
vars
=
all_vars
)
logger
.
warning
(
"There is no paramters of batch norm in model {}. "
"Skip to fuse batch norm. And load paramters done."
.
format
(
path
))
return
# load running mean and running variance on cpu place into global scope.
place
=
fluid
.
CPUPlace
()
...
...
tools/train.py
浏览文件 @
a7a825b4
...
...
@@ -77,9 +77,6 @@ def main():
if
'log_iter'
not
in
cfg
:
cfg
.
log_iter
=
20
ignore_params
=
cfg
.
finetune_exclude_pretrained_params
\
if
'finetune_exclude_pretrained_params'
in
cfg
else
[]
# check if set use_gpu=True in paddlepaddle cpu version
check_gpu
(
cfg
.
use_gpu
)
if
not
FLAGS
.
dist
or
trainer_id
==
0
:
...
...
@@ -193,8 +190,11 @@ def main():
compiled_eval_prog
=
fluid
.
compiler
.
CompiledProgram
(
eval_prog
)
fuse_bn
=
getattr
(
model
.
backbone
,
'norm_type'
,
None
)
==
'affine_channel'
start_iter
=
0
ignore_params
=
cfg
.
finetune_exclude_pretrained_params
\
if
'finetune_exclude_pretrained_params'
in
cfg
else
[]
start_iter
=
0
if
FLAGS
.
resume_checkpoint
:
checkpoint
.
load_checkpoint
(
exe
,
train_prog
,
FLAGS
.
resume_checkpoint
)
start_iter
=
checkpoint
.
global_step
()
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录