-
Notifications
You must be signed in to change notification settings - Fork 181
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support same app for all sites in Job API (#2714)
* support same app to all * add to_server() and to_clients() routines * comment out export * improve input errors handling * check for missing server components * address comments --------- Co-authored-by: Yuan-Ting Hsieh (謝沅廷) <yuantingh@nvidia.com>
- Loading branch information
1 parent
d669dca
commit 1ef5207
Showing
3 changed files
with
183 additions
and
55 deletions.
There are no files selected for viewing
43 changes: 43 additions & 0 deletions
43
examples/getting_started/pt/fedavg_script_executor_cifar10_all.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Copyright (c) 2024, NVIDIA CORPORATION. All rights reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
from src.net import Net | ||
|
||
from nvflare import FedAvg, FedJob, ScriptExecutor | ||
|
||
if __name__ == "__main__": | ||
n_clients = 2 | ||
num_rounds = 2 | ||
train_script = "src/cifar10_fl.py" | ||
|
||
job = FedJob(name="cifar10_fedavg") | ||
|
||
# Define the controller workflow and send to server | ||
controller = FedAvg( | ||
num_clients=n_clients, | ||
num_rounds=num_rounds, | ||
) | ||
job.to_server(controller) | ||
|
||
# Define the initial global model and send to server | ||
job.to_server(Net()) | ||
|
||
# Send executor to all clients | ||
executor = ScriptExecutor( | ||
task_script_path=train_script, task_script_args="" # f"--batch_size 32 --data_path /tmp/data/site-{i}" | ||
) | ||
job.to_clients(executor) | ||
|
||
# job.export_job("/tmp/nvflare/jobs/job_config") | ||
job.simulator_run("/tmp/nvflare/jobs/workdir", n_clients=n_clients) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters