-
Notifications
You must be signed in to change notification settings - Fork 961
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Configuring individual clients #2780
Comments
Hey @gioperin, that part of the documentation indicates (as you point out) how to configure clients, but not individually. You can still achieve what you want by implementing a custom strategy and overriding the |
Hi @jafermarq please note that the documentation is highly misleading because the title of that section is "configuring individual clients" and the example does not achieve what the title suggests. The workaround you cited is the one I am using right now. I want to point out that this procedure is extremely inefficient because it implies copying N times all the fields inside Thank you for your reply! |
I think the code needs to be updated so that it is in fact only the first client receives _, fit_ins = client_instructions[0]
fit_ins = FitIns(parameters=fit_ins.parameters, fit_ins.config | {"hello": "world"}) Is this a Pythonic behavior or somewhere else in the codebase would have required such workarounds in the first place? EDIT: I was wrong, using client_instructions = [(client, copy(fit_ins)) for client, fit_ins in client_instructions]
_, fit_ins = client_instructions[0]
fit_ins.config = fit_ins.config | {"hello": "world"}) |
Describe the bug
The procedure described in the documentation does not work as expected for what concerns the configuration of individual clients.
Steps/Code to Reproduce
The class
CustomClientConfigStrategy
in the documentationExpected Results
Only the config dictionary of the first client should have a field "hello" filled with "world".
Actual Results
All of them have the aforementioned field with the same value. This does not allow customization of clients individually. The reason is simple: when calling the parent function from the strategy FedAvg, a single instance of FitIns is generated and the resulting output is given as multiple pointers to the same object. Hence, whenever one tries to modify the configuration of any single client, the single FitIns object, which is given to all the clients, is modified.
The text was updated successfully, but these errors were encountered: