I am using a MultiLayerNetwork
. This network is trained and the results are as expected.
As part of an effort to implement Federated Learning
I need to upgrade the weights of this network with a new set of gradients coming from an external component.
My question is, in DL4J, once you execute model.update(newGradients)
, are the weights updated too or do I need to execute something else?
Thanks