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
Hi,
In autonn, can we determine weigthed multi loss like dagnn :
derOutputs ={'objective1', 0.3,'objective2',0.3,'objective3',1}
or, only define how many loss function in eval by using derOutput?
If we can assign derOutput as derOutput = [.2 .5 .8] , how can we sort in true order?
The text was updated successfully, but these errors were encountered:
Hi! This is the same order as the outputs when you compile the network. E.g.:
net = Net(objective1, objective2, objective3);
Then the derivatives will correspond to the objectives in the same order.
Hi,
In autonn, can we determine weigthed multi loss like dagnn :
derOutputs ={'objective1', 0.3,'objective2',0.3,'objective3',1}
or, only define how many loss function in eval by using derOutput?
If we can assign derOutput as derOutput = [.2 .5 .8] , how can we sort in true order?
The text was updated successfully, but these errors were encountered: