Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
wangsen
paddle_dbnet
Commits
4a6f7cec
"...git@developer.sourcefind.cn:chenpangpang/diffusers.git" did not exist on "02a8d664a2a49289c4058d584b3694f3e4a1b0d2"
Commit
4a6f7cec
authored
Nov 24, 2021
by
WenmuZhou
Browse files
pair param with key when load trained model params
parent
91b79f69
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
9 deletions
+10
-9
ppocr/utils/save_load.py
ppocr/utils/save_load.py
+10
-9
No files found.
ppocr/utils/save_load.py
View file @
4a6f7cec
...
@@ -57,22 +57,23 @@ def load_model(config, model, optimizer=None):
...
@@ -57,22 +57,23 @@ def load_model(config, model, optimizer=None):
if
checkpoints
.
endswith
(
'pdparams'
):
if
checkpoints
.
endswith
(
'pdparams'
):
checkpoints
=
checkpoints
.
replace
(
'.pdparams'
,
''
)
checkpoints
=
checkpoints
.
replace
(
'.pdparams'
,
''
)
assert
os
.
path
.
exists
(
checkpoints
+
".pdparams"
),
\
assert
os
.
path
.
exists
(
checkpoints
+
".pdparams"
),
\
f
"The
{
checkpoints
}
.pdparams does not exists!"
"The {}.pdparams does not exists!"
.
format
(
checkpoints
)
# load params from trained model
# load params from trained model
params
=
paddle
.
load
(
checkpoints
+
'.pdparams'
)
params
=
paddle
.
load
(
checkpoints
+
'.pdparams'
)
state_dict
=
model
.
state_dict
()
state_dict
=
model
.
state_dict
()
new_state_dict
=
{}
new_state_dict
=
{}
for
key
,
value
in
state_dict
.
items
():
for
key
,
value
in
state_dict
.
items
():
if
key
not
in
params
:
if
key
not
in
params
:
logger
.
warning
(
f
"
{
key
}
not in loaded params
{
params
.
keys
()
}
!"
)
logger
.
warning
(
"{} not in loaded params {} !"
.
format
(
key
,
params
.
keys
()))
pre_value
=
params
[
key
]
pre_value
=
params
[
key
]
if
list
(
value
.
shape
)
==
list
(
pre_value
.
shape
):
if
list
(
value
.
shape
)
==
list
(
pre_value
.
shape
):
new_state_dict
[
key
]
=
pre_value
new_state_dict
[
key
]
=
pre_value
else
:
else
:
logger
.
warning
(
logger
.
warning
(
f
"The shape of model params
{
key
}
{
value
.
shape
}
not matched with loaded params shape
{
pre_value
.
shape
}
!"
"The shape of model params {
} {
} not matched with loaded params shape {} !"
.
)
format
(
key
,
value
.
shape
,
pre_value
.
shape
)
)
model
.
set_state_dict
(
new_state_dict
)
model
.
set_state_dict
(
new_state_dict
)
optim_dict
=
paddle
.
load
(
checkpoints
+
'.pdopt'
)
optim_dict
=
paddle
.
load
(
checkpoints
+
'.pdopt'
)
...
@@ -99,7 +100,7 @@ def load_pretrained_params(model, path):
...
@@ -99,7 +100,7 @@ def load_pretrained_params(model, path):
if
path
.
endswith
(
'pdparams'
):
if
path
.
endswith
(
'pdparams'
):
path
=
path
.
replace
(
'.pdparams'
,
''
)
path
=
path
.
replace
(
'.pdparams'
,
''
)
assert
os
.
path
.
exists
(
path
+
".pdparams"
),
\
assert
os
.
path
.
exists
(
path
+
".pdparams"
),
\
f
"The
{
path
}
.pdparams does not exists!"
"The {}.pdparams does not exists!"
.
format
(
path
)
params
=
paddle
.
load
(
path
+
'.pdparams'
)
params
=
paddle
.
load
(
path
+
'.pdparams'
)
state_dict
=
model
.
state_dict
()
state_dict
=
model
.
state_dict
()
...
@@ -109,10 +110,10 @@ def load_pretrained_params(model, path):
...
@@ -109,10 +110,10 @@ def load_pretrained_params(model, path):
new_state_dict
[
k1
]
=
params
[
k2
]
new_state_dict
[
k1
]
=
params
[
k2
]
else
:
else
:
logger
.
warning
(
logger
.
warning
(
f
"The shape of model params
{
k1
}
{
state_dict
[
k1
].
shape
}
not matched with loaded params
{
k2
}
{
params
[
k2
].
shape
}
!"
"The shape of model params {} {} not matched with loaded params {} {} !"
.
)
format
(
k1
,
state_dict
[
k1
].
shape
,
k2
,
params
[
k2
].
shape
)
)
model
.
set_state_dict
(
new_state_dict
)
model
.
set_state_dict
(
new_state_dict
)
logger
.
info
(
f
"load pretrain successful from
{
path
}
"
)
logger
.
info
(
"load pretrain successful from {
}"
.
format
(
path
)
)
return
model
return
model
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment