I have model subclassing the tensorflow.keras.models.Model class. The call method returns [output_1, ouput_2], where output_1 and output_2 have different shapes. How can I pack both outputs to be used on the same loss function? (Have y_pred on the custom loss be the list returned by the call method)