2021-06-02 16:31:57 +08:00
|
|
|
#copyright (c) 2021 PaddlePaddle Authors. All Rights Reserve.
|
|
|
|
#
|
|
|
|
#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
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
#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.
|
|
|
|
|
|
|
|
import paddle
|
|
|
|
import paddle.nn as nn
|
|
|
|
|
|
|
|
from .rec_ctc_loss import CTCLoss
|
|
|
|
from .basic_loss import DMLLoss
|
|
|
|
|
|
|
|
|
|
|
|
class DistillationDMLLoss(DMLLoss):
|
|
|
|
"""
|
|
|
|
"""
|
|
|
|
|
2021-06-03 13:30:43 +08:00
|
|
|
def __init__(self, model_name_pairs=[], act=None, key=None,
|
2021-06-02 16:31:57 +08:00
|
|
|
name="loss_dml"):
|
2021-06-03 13:30:43 +08:00
|
|
|
super().__init__(act=act, name=name)
|
|
|
|
assert isinstance(model_name_pairs, list)
|
2021-06-02 16:31:57 +08:00
|
|
|
self.key = key
|
2021-06-03 13:30:43 +08:00
|
|
|
self.model_name_pairs = model_name_pairs
|
2021-06-02 16:31:57 +08:00
|
|
|
|
|
|
|
def forward(self, predicts, batch):
|
|
|
|
loss_dict = dict()
|
2021-06-03 13:30:43 +08:00
|
|
|
for idx, pair in enumerate(self.model_name_pairs):
|
|
|
|
out1 = predicts[pair[0]]
|
|
|
|
out2 = predicts[pair[1]]
|
2021-06-02 16:31:57 +08:00
|
|
|
if self.key is not None:
|
|
|
|
out1 = out1[self.key]
|
|
|
|
out2 = out2[self.key]
|
|
|
|
loss = super().forward(out1, out2)
|
|
|
|
if isinstance(loss, dict):
|
2021-06-03 13:30:43 +08:00
|
|
|
for key in loss:
|
|
|
|
loss_dict["{}_{}_{}".format(self.name, key, idx)] = loss[
|
|
|
|
key]
|
|
|
|
else:
|
|
|
|
loss_dict["{}_{}".format(self.name, idx)] = loss
|
2021-06-02 16:31:57 +08:00
|
|
|
return loss_dict
|
|
|
|
|
|
|
|
|
|
|
|
class DistillationCTCLoss(CTCLoss):
|
|
|
|
def __init__(self, model_name_list=[], key=None, name="loss_ctc"):
|
|
|
|
super().__init__()
|
|
|
|
self.model_name_list = model_name_list
|
|
|
|
self.key = key
|
|
|
|
self.name = name
|
|
|
|
|
|
|
|
def forward(self, predicts, batch):
|
|
|
|
loss_dict = dict()
|
2021-06-03 13:30:43 +08:00
|
|
|
for idx, model_name in enumerate(self.model_name_list):
|
2021-06-02 16:31:57 +08:00
|
|
|
out = predicts[model_name]
|
|
|
|
if self.key is not None:
|
|
|
|
out = out[self.key]
|
|
|
|
loss = super().forward(out, batch)
|
|
|
|
if isinstance(loss, dict):
|
2021-06-03 13:30:43 +08:00
|
|
|
for key in loss:
|
|
|
|
loss_dict["{}_{}_{}".format(self.name, model_name,
|
|
|
|
idx)] = loss[key]
|
|
|
|
else:
|
|
|
|
loss_dict["{}_{}".format(self.name, model_name)] = loss
|
2021-06-02 16:31:57 +08:00
|
|
|
return loss_dict
|