Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
Paddle
提交
e33b9db6
P
Paddle
项目概览
BaiXuePrincess
/
Paddle
与 Fork 源项目一致
Fork自
PaddlePaddle / Paddle
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
e33b9db6
编写于
5月 18, 2022
作者:
W
wangna11BD
提交者:
GitHub
5月 18, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix summary trainable_params bug (#42798)
* fix summary trainable_params bug
上级
bebaee37
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
26 addition
and
3 deletion
+26
-3
python/paddle/hapi/model_summary.py
python/paddle/hapi/model_summary.py
+6
-2
python/paddle/tests/test_model.py
python/paddle/tests/test_model.py
+20
-1
未找到文件。
python/paddle/hapi/model_summary.py
浏览文件 @
e33b9db6
...
...
@@ -301,14 +301,18 @@ def summary_string(model, input_size=None, dtypes=None, input=None):
else
:
layer_state_dict
=
layer
.
state_dict
()
summary
[
m_key
][
"trainable_params"
]
=
0
trainable_flag
=
False
for
k
,
v
in
layer_state_dict
.
items
():
params
+=
np
.
prod
(
v
.
shape
)
try
:
if
(
getattr
(
getattr
(
layer
,
k
),
'trainable'
))
and
(
not
getattr
(
getattr
(
layer
,
k
),
'stop_gradient'
)):
summary
[
m_key
][
"trainable_params"
]
+=
np
.
prod
(
v
.
shape
)
summary
[
m_key
][
"trainable"
]
=
True
else
:
trainable_flag
=
True
elif
not
trainable_flag
:
summary
[
m_key
][
"trainable"
]
=
False
except
:
summary
[
m_key
][
"trainable"
]
=
True
...
...
@@ -427,7 +431,7 @@ def summary_string(model, input_size=None, dtypes=None, input=None):
if
"trainable"
in
summary
[
layer
]:
if
summary
[
layer
][
"trainable"
]
==
True
:
trainable_params
+=
summary
[
layer
][
"
nb
_params"
]
trainable_params
+=
summary
[
layer
][
"
trainable
_params"
]
summary_str
+=
line_new
+
"
\n
"
def
_get_input_size
(
input_size
,
size
):
...
...
python/paddle/tests/test_model.py
浏览文件 @
e33b9db6
...
...
@@ -90,7 +90,26 @@ class ModelOutter(paddle.nn.Layer):
return
y
,
3
class
LeNetListInput
(
LeNetDygraph
):
class
LeNetListInput
(
paddle
.
nn
.
Layer
):
def
__init__
(
self
,
num_classes
=
10
):
super
(
LeNetListInput
,
self
).
__init__
()
self
.
num_classes
=
num_classes
self
.
cov
=
Conv2D
(
1
,
6
,
3
,
stride
=
1
,
padding
=
1
)
for
param
in
self
.
cov
.
parameters
():
param
.
trainable
=
False
self
.
features
=
Sequential
(
self
.
cov
,
ReLU
(),
paddle
.
fluid
.
dygraph
.
Pool2D
(
2
,
'max'
,
2
),
Conv2D
(
6
,
16
,
5
,
stride
=
1
,
padding
=
0
),
ReLU
(),
paddle
.
fluid
.
dygraph
.
Pool2D
(
2
,
'max'
,
2
))
if
num_classes
>
0
:
self
.
fc
=
Sequential
(
Linear
(
400
,
120
),
Linear
(
120
,
84
),
Linear
(
84
,
10
))
def
forward
(
self
,
inputs
):
x
=
inputs
[
0
]
x
=
self
.
features
(
x
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录