Skip to content
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

Open
gioperin opened this issue Jan 8, 2024 · 3 comments
Open

Configuring individual clients #2780

gioperin opened this issue Jan 8, 2024 · 3 comments
Labels
documentation Improvements or additions to documentation part: misc framework Issue/PR for general applications for Flower framework. stale If issue/PR hasn't been updated within 3 weeks.

Comments

@gioperin
Copy link

gioperin commented Jan 8, 2024

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 documentation

Expected 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.

@gioperin gioperin added the bug Something isn't working label Jan 8, 2024
@jafermarq jafermarq added documentation Improvements or additions to documentation and removed bug Something isn't working labels Feb 5, 2024
@jafermarq
Copy link
Contributor

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 configure_fit() method and assign a different FitIns object to each client that has been sampled.

@gioperin
Copy link
Author

gioperin commented Feb 6, 2024

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 FitIns, among which there are the parameters, ending up in poor memory usage. Don't you think it would be a good idea to use another dictionary other than FitIns to pass configuration parameters so that we don't need to copy the model parameters?

Thank you for your reply!

@danielphan2003
Copy link

danielphan2003 commented Mar 19, 2024

This can be achieved by customizing an existing strategy or by implementing a custom strategy from scratch. Here’s a nonsensical example that customizes FedAvg by adding a custom "hello": "world" configuration key/value pair to the config dict of a single client (only the first client in the list, the other clients in this round to not receive this “special” config value):

# Add special "hello": "world" config key/value pair,
# but only to the first client in the list
_, fit_ins = client_instructions[0]  # First (ClientProxy, FitIns) pair
fit_ins.config["hello"] = "world"  # Change config for this client only

I think the code needs to be updated so that it is in fact only the first client receives {"hello": "world"}, such as:

_, 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 copy would solve the problem but would result in poor memory usage as well:

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"})

@WilliamLindskog WilliamLindskog added stale If issue/PR hasn't been updated within 3 weeks. part: misc framework Issue/PR for general applications for Flower framework. labels Dec 11, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation part: misc framework Issue/PR for general applications for Flower framework. stale If issue/PR hasn't been updated within 3 weeks.
Projects
None yet
Development

No branches or pull requests

4 participants