Training of multi-output Keras model on a joint loss function
问题 I'm writing two joint decoders in Keras, with one common input, two separate outputs, and a loss function that takes both outputs into account. The problem that I have is with the loss function. Here is the minimal Keras code that you can reproduce the error: import tensorflow as tf from scat import * from keras.layers import Input, Reshape, Permute, Lambda, Flatten from keras.layers.core import Dense from keras.layers.advanced_activations import LeakyReLU from keras.models import Model from