Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
f3959e9d
P
Paddle
项目概览
PaddlePaddle
/
Paddle
大约 1 年 前同步成功
通知
2299
Star
20931
Fork
5422
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1423
列表
看板
标记
里程碑
合并请求
543
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1,423
Issue
1,423
列表
看板
标记
里程碑
合并请求
543
合并请求
543
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
f3959e9d
编写于
3月 11, 2021
作者:
A
Aurelius84
提交者:
GitHub
3月 11, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[save/load] Fix bug with input_spec=dict[InputSpec] in jit.save (#31517)
* fix bug with jit.save * refine code
上级
83a2fb1f
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
40 addition
and
1 deletion
+40
-1
python/paddle/fluid/dygraph/jit.py
python/paddle/fluid/dygraph/jit.py
+6
-1
python/paddle/fluid/tests/unittests/test_jit_save_load.py
python/paddle/fluid/tests/unittests/test_jit_save_load.py
+34
-0
未找到文件。
python/paddle/fluid/dygraph/jit.py
浏览文件 @
f3959e9d
...
...
@@ -25,7 +25,7 @@ import paddle
from
paddle.fluid
import
core
from
paddle.fluid.compiler
import
BuildStrategy
,
CompiledProgram
,
ExecutionStrategy
from
paddle.fluid.data_feeder
import
check_type
from
paddle.fluid.layers.utils
import
flatten
from
paddle.fluid.layers.utils
import
flatten
,
pack_sequence_as
from
paddle.fluid.dygraph.base
import
program_desc_tracing_guard
,
switch_to_static_graph
from
paddle.fluid.dygraph.dygraph_to_static
import
logging_utils
from
paddle.fluid.dygraph.dygraph_to_static.convert_call_func
import
ConversionOptions
,
CONVERSION_OPTIONS
...
...
@@ -681,6 +681,11 @@ def save(layer, path, input_spec=None, **configs):
inner_input_spec
)
elif
'forward'
==
attr_func
:
# transform in jit.save, if input_spec is incomplete, declarative will throw error
# inner_input_spec is list[InputSpec], it should be packed with same sturcture
# as original input_spec here.
if
inner_input_spec
:
inner_input_spec
=
pack_sequence_as
(
input_spec
,
inner_input_spec
)
static_forward
=
declarative
(
inner_layer
.
forward
,
input_spec
=
inner_input_spec
)
concrete_program
=
static_forward
.
concrete_program
...
...
python/paddle/fluid/tests/unittests/test_jit_save_load.py
浏览文件 @
f3959e9d
...
...
@@ -222,6 +222,16 @@ class LinearNetWithDictInput(paddle.nn.Layer):
return
out
class
LinearNetWithDictInputNoPrune
(
paddle
.
nn
.
Layer
):
def
__init__
(
self
,
in_size
,
out_size
):
super
(
LinearNetWithDictInputNoPrune
,
self
).
__init__
()
self
.
_linear
=
Linear
(
in_size
,
out_size
)
def
forward
(
self
,
img
):
out
=
self
.
_linear
(
img
[
'img'
]
+
img
[
'img2'
])
return
out
class
EmptyLayer
(
paddle
.
nn
.
Layer
):
def
__init__
(
self
):
super
(
EmptyLayer
,
self
).
__init__
()
...
...
@@ -443,6 +453,30 @@ class TestSaveLoadWithDictInput(unittest.TestCase):
self
.
assertEqual
(
len
(
loaded_net
.
_input_spec
()),
1
)
class
TestSaveLoadWithDictInputNoPrune
(
unittest
.
TestCase
):
def
test_dict_input
(
self
):
net
=
LinearNetWithDictInputNoPrune
(
8
,
8
)
path
=
"test_jit_save_load_with_dict_input_no_prune/model"
# prune inputs
paddle
.
jit
.
save
(
layer
=
net
,
path
=
path
,
input_spec
=
[{
'img'
:
InputSpec
(
shape
=
[
None
,
8
],
dtype
=
'float32'
,
name
=
'img'
),
'img2'
:
InputSpec
(
shape
=
[
None
,
8
],
dtype
=
'float32'
,
name
=
'img2'
)
}])
img
=
paddle
.
randn
(
shape
=
[
4
,
8
],
dtype
=
'float32'
)
img2
=
paddle
.
randn
(
shape
=
[
4
,
8
],
dtype
=
'float32'
)
loaded_net
=
paddle
.
jit
.
load
(
path
)
loaded_out
=
loaded_net
(
img
,
img2
)
self
.
assertEqual
(
len
(
loaded_net
.
_input_spec
()),
2
)
class
TestSaveLoadWithInputSpec
(
unittest
.
TestCase
):
def
setUp
(
self
):
# enable dygraph mode
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录