2020-04-09 02:16:30 +08:00
|
|
|
# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserve.
|
|
|
|
#
|
2020-05-03 17:21:07 +08:00
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
2020-04-09 02:16:30 +08:00
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
2020-05-03 17:21:07 +08:00
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
2020-04-09 02:16:30 +08:00
|
|
|
|
|
|
|
from __future__ import absolute_import
|
|
|
|
from __future__ import division
|
|
|
|
from __future__ import print_function
|
|
|
|
|
2020-04-11 01:20:33 +08:00
|
|
|
import errno
|
2020-04-09 02:16:30 +08:00
|
|
|
import os
|
|
|
|
|
2020-09-15 17:43:19 +08:00
|
|
|
import paddle
|
2022-08-17 22:34:06 +08:00
|
|
|
from . import logger
|
2021-06-10 16:30:05 +08:00
|
|
|
from .download import get_weights_path_from_url
|
2020-04-09 02:16:30 +08:00
|
|
|
|
2020-08-28 17:43:27 +08:00
|
|
|
__all__ = ['init_model', 'save_model', 'load_dygraph_pretrain']
|
2020-04-09 02:16:30 +08:00
|
|
|
|
|
|
|
|
|
|
|
def _mkdir_if_not_exist(path):
|
|
|
|
"""
|
2020-04-11 01:21:31 +08:00
|
|
|
mkdir if not exists, ignore the exception when multiprocess mkdir together
|
2020-04-09 02:16:30 +08:00
|
|
|
"""
|
2020-04-11 01:20:33 +08:00
|
|
|
if not os.path.exists(path):
|
|
|
|
try:
|
|
|
|
os.makedirs(path)
|
|
|
|
except OSError as e:
|
|
|
|
if e.errno == errno.EEXIST and os.path.isdir(path):
|
|
|
|
logger.warning(
|
|
|
|
'be happy if some process has already created {}'.format(
|
|
|
|
path))
|
|
|
|
else:
|
2020-04-11 01:22:14 +08:00
|
|
|
raise OSError('Failed to mkdir {}'.format(path))
|
2020-04-09 02:16:30 +08:00
|
|
|
|
|
|
|
|
2022-05-17 21:24:24 +08:00
|
|
|
def _extract_student_weights(all_params, student_prefix="Student."):
|
|
|
|
s_params = {
|
|
|
|
key[len(student_prefix):]: all_params[key]
|
|
|
|
for key in all_params if student_prefix in key
|
|
|
|
}
|
|
|
|
return s_params
|
|
|
|
|
|
|
|
|
2021-06-10 16:30:05 +08:00
|
|
|
def load_dygraph_pretrain(model, path=None):
|
2020-04-09 02:16:30 +08:00
|
|
|
if not (os.path.isdir(path) or os.path.exists(path + '.pdparams')):
|
2022-04-19 14:26:42 +08:00
|
|
|
raise ValueError("Model pretrain path {}.pdparams does not "
|
2020-04-09 02:16:30 +08:00
|
|
|
"exists.".format(path))
|
2020-10-30 00:20:48 +08:00
|
|
|
param_state_dict = paddle.load(path + ".pdparams")
|
2022-04-19 14:26:42 +08:00
|
|
|
if isinstance(model, list):
|
|
|
|
for m in model:
|
2022-04-19 19:54:48 +08:00
|
|
|
if hasattr(m, 'set_dict'):
|
|
|
|
m.set_dict(param_state_dict)
|
2022-04-19 14:26:42 +08:00
|
|
|
else:
|
|
|
|
model.set_dict(param_state_dict)
|
2020-08-28 17:43:27 +08:00
|
|
|
return
|
2020-04-09 02:16:30 +08:00
|
|
|
|
|
|
|
|
2021-07-12 18:35:53 +08:00
|
|
|
def load_dygraph_pretrain_from_url(model, pretrained_url, use_ssld=False):
|
2021-05-28 10:55:48 +08:00
|
|
|
if use_ssld:
|
2021-05-29 13:52:32 +08:00
|
|
|
pretrained_url = pretrained_url.replace("_pretrained",
|
|
|
|
"_ssld_pretrained")
|
|
|
|
local_weight_path = get_weights_path_from_url(pretrained_url).replace(
|
|
|
|
".pdparams", "")
|
2021-06-10 16:30:05 +08:00
|
|
|
load_dygraph_pretrain(model, path=local_weight_path)
|
2021-05-28 10:55:48 +08:00
|
|
|
return
|
|
|
|
|
|
|
|
|
2021-06-10 16:30:05 +08:00
|
|
|
def load_distillation_model(model, pretrained_model):
|
2020-09-03 11:22:39 +08:00
|
|
|
logger.info("In distillation mode, teacher model will be "
|
2020-09-03 11:24:22 +08:00
|
|
|
"loaded firstly before student model.")
|
2021-01-19 18:49:30 +08:00
|
|
|
|
|
|
|
if not isinstance(pretrained_model, list):
|
|
|
|
pretrained_model = [pretrained_model]
|
|
|
|
|
2020-11-12 00:17:28 +08:00
|
|
|
teacher = model.teacher if hasattr(model,
|
|
|
|
"teacher") else model._layers.teacher
|
|
|
|
student = model.student if hasattr(model,
|
|
|
|
"student") else model._layers.student
|
2021-06-10 16:30:05 +08:00
|
|
|
load_dygraph_pretrain(teacher, path=pretrained_model[0])
|
2021-01-19 18:49:30 +08:00
|
|
|
logger.info("Finish initing teacher model from {}".format(
|
|
|
|
pretrained_model))
|
|
|
|
# load student model
|
|
|
|
if len(pretrained_model) >= 2:
|
2021-06-10 16:30:05 +08:00
|
|
|
load_dygraph_pretrain(student, path=pretrained_model[1])
|
2021-01-19 18:49:30 +08:00
|
|
|
logger.info("Finish initing student model from {}".format(
|
|
|
|
pretrained_model))
|
2020-09-03 11:22:39 +08:00
|
|
|
|
2020-09-03 11:24:22 +08:00
|
|
|
|
2022-04-19 14:26:42 +08:00
|
|
|
def init_model(config, net, optimizer=None, loss: paddle.nn.Layer=None):
|
2020-04-09 02:16:30 +08:00
|
|
|
"""
|
2020-04-09 23:06:58 +08:00
|
|
|
load model from checkpoint or pretrained_model
|
2020-04-09 02:16:30 +08:00
|
|
|
"""
|
|
|
|
checkpoints = config.get('checkpoints')
|
2021-03-01 19:36:55 +08:00
|
|
|
if checkpoints and optimizer is not None:
|
2020-06-12 10:55:05 +08:00
|
|
|
assert os.path.exists(checkpoints + ".pdparams"), \
|
|
|
|
"Given dir {}.pdparams not exist.".format(checkpoints)
|
|
|
|
assert os.path.exists(checkpoints + ".pdopt"), \
|
|
|
|
"Given dir {}.pdopt not exist.".format(checkpoints)
|
2022-04-19 14:26:42 +08:00
|
|
|
# load state dict
|
2020-10-30 00:20:48 +08:00
|
|
|
opti_dict = paddle.load(checkpoints + ".pdopt")
|
2022-04-19 14:26:42 +08:00
|
|
|
para_dict = paddle.load(checkpoints + ".pdparams")
|
2021-05-29 13:52:32 +08:00
|
|
|
metric_dict = paddle.load(checkpoints + ".pdstates")
|
2022-04-19 14:26:42 +08:00
|
|
|
# set state dict
|
|
|
|
net.set_state_dict(para_dict)
|
2022-04-20 11:08:42 +08:00
|
|
|
loss.set_state_dict(para_dict)
|
2022-04-19 14:26:42 +08:00
|
|
|
for i in range(len(optimizer)):
|
2022-05-17 21:04:01 +08:00
|
|
|
optimizer[i].set_state_dict(opti_dict[i] if isinstance(
|
|
|
|
opti_dict, list) else opti_dict)
|
2021-03-01 19:36:55 +08:00
|
|
|
logger.info("Finish load checkpoints from {}".format(checkpoints))
|
2021-05-29 13:52:32 +08:00
|
|
|
return metric_dict
|
2020-04-09 02:16:30 +08:00
|
|
|
|
|
|
|
pretrained_model = config.get('pretrained_model')
|
2020-08-28 17:43:27 +08:00
|
|
|
use_distillation = config.get('use_distillation', False)
|
2020-04-09 23:06:58 +08:00
|
|
|
if pretrained_model:
|
2021-01-19 18:49:30 +08:00
|
|
|
if use_distillation:
|
2021-06-10 16:30:05 +08:00
|
|
|
load_distillation_model(net, pretrained_model)
|
2020-09-03 11:24:22 +08:00
|
|
|
else: # common load
|
2021-06-10 16:30:05 +08:00
|
|
|
load_dygraph_pretrain(net, path=pretrained_model)
|
2022-05-10 14:29:20 +08:00
|
|
|
logger.info("Finish load pretrained model from {}".format(
|
2022-05-17 21:01:10 +08:00
|
|
|
pretrained_model))
|
2020-04-09 02:16:30 +08:00
|
|
|
|
|
|
|
|
2021-05-29 13:52:32 +08:00
|
|
|
def save_model(net,
|
|
|
|
optimizer,
|
|
|
|
metric_info,
|
|
|
|
model_path,
|
|
|
|
model_name="",
|
2022-04-19 14:26:42 +08:00
|
|
|
prefix='ppcls',
|
2022-05-17 21:24:24 +08:00
|
|
|
loss: paddle.nn.Layer=None,
|
|
|
|
save_student_model=False):
|
2020-04-09 02:16:30 +08:00
|
|
|
"""
|
2020-04-09 23:06:58 +08:00
|
|
|
save model to the target path
|
2020-04-09 02:16:30 +08:00
|
|
|
"""
|
2020-11-20 18:10:06 +08:00
|
|
|
if paddle.distributed.get_rank() != 0:
|
|
|
|
return
|
2021-05-27 18:41:44 +08:00
|
|
|
model_path = os.path.join(model_path, model_name)
|
2020-04-09 02:16:30 +08:00
|
|
|
_mkdir_if_not_exist(model_path)
|
2021-06-15 14:11:50 +08:00
|
|
|
model_path = os.path.join(model_path, prefix)
|
2021-01-25 20:58:35 +08:00
|
|
|
|
2022-04-19 14:26:42 +08:00
|
|
|
params_state_dict = net.state_dict()
|
2022-05-17 21:24:24 +08:00
|
|
|
if loss is not None:
|
|
|
|
loss_state_dict = loss.state_dict()
|
|
|
|
keys_inter = set(params_state_dict.keys()) & set(loss_state_dict.keys(
|
|
|
|
))
|
|
|
|
assert len(keys_inter) == 0, \
|
|
|
|
f"keys in model and loss state_dict must be unique, but got intersection {keys_inter}"
|
|
|
|
params_state_dict.update(loss_state_dict)
|
|
|
|
|
|
|
|
if save_student_model:
|
|
|
|
s_params = _extract_student_weights(params_state_dict)
|
|
|
|
if len(s_params) > 0:
|
|
|
|
paddle.save(s_params, model_path + "_student.pdparams")
|
2022-04-19 14:26:42 +08:00
|
|
|
|
|
|
|
paddle.save(params_state_dict, model_path + ".pdparams")
|
|
|
|
paddle.save([opt.state_dict() for opt in optimizer], model_path + ".pdopt")
|
2021-06-15 14:11:50 +08:00
|
|
|
paddle.save(metric_info, model_path + ".pdstates")
|
2021-01-25 20:58:35 +08:00
|
|
|
logger.info("Already save model in {}".format(model_path))
|