You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Need to be able to specify a mapping between Layer outputs and targets to support multi-output models.
For example: Layer(outputs=['one', 'two'], targets=['three'])
means: cost = mse('one', 'three') + mse('two', 'three') # or average or whatever
The text was updated successfully, but these errors were encountered:
Need to be able to specify a mapping between Layer outputs and targets to support multi-output models.
For example:
Layer(outputs=['one', 'two'], targets=['three'])
means:
cost = mse('one', 'three') + mse('two', 'three')
# or average or whateverThe text was updated successfully, but these errors were encountered: