Returns masks corresponding to model outputs.
(self)
| 1665 | return [l is None for l in self.loss_functions] |
| 1666 | |
| 1667 | def _prepare_output_masks(self): |
| 1668 | """Returns masks corresponding to model outputs.""" |
| 1669 | return [getattr(x, '_keras_mask', None) for x in self.outputs] |
| 1670 | |
| 1671 | def _prepare_total_loss(self, masks): |
| 1672 | """Computes total loss from loss functions. |
no outgoing calls
no test coverage detected