-
Notifications
You must be signed in to change notification settings - Fork 183
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5afd313
commit ce73738
Showing
24 changed files
with
826 additions
and
159 deletions.
There are no files selected for viewing
82 changes: 0 additions & 82 deletions
82
...em/06.3_site_security/code/custom_client_side_job_level_authorization/README.md
This file was deleted.
Oops, something went wrong.
10 changes: 0 additions & 10 deletions
10
...em/06.3_site_security/code/custom_client_side_job_level_authorization/jobs/job1/meta.json
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
...em/06.3_site_security/code/custom_client_side_job_level_authorization/jobs/job2/meta.json
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
...ystem/06.3_site_security/code/custom_client_side_job_level_authorization/requirements.txt
This file was deleted.
Oops, something went wrong.
27 changes: 0 additions & 27 deletions
27
...e_security/code/custom_client_side_job_level_authorization/security/site-1/resources.json
This file was deleted.
Oops, something went wrong.
16 changes: 0 additions & 16 deletions
16
...ompute_system/06.3_site_security/code/custom_client_side_job_level_authorization/setup.sh
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
...e_system/06.3_site_security/code/custom_client_side_keycloak_integration/requirements.txt
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
60 changes: 60 additions & 0 deletions
60
...3_site_security/examples/custom_client_side_job_level_authorization/code/data/download.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,60 @@ | ||
# Copyright (c) 2023, 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. | ||
|
||
# This Dirichlet sampling strategy for creating a heterogeneous partition is adopted | ||
# from FedMA (https://github.com/IBM/FedMA). | ||
|
||
# MIT License | ||
|
||
# Copyright (c) 2020 International Business Machines | ||
|
||
# Permission is hereby granted, free of charge, to any person obtaining a copy | ||
# of this software and associated documentation files (the "Software"), to deal | ||
# in the Software without restriction, including without limitation the rights | ||
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
# copies of the Software, and to permit persons to whom the Software is | ||
# furnished to do so, subject to the following conditions: | ||
|
||
# The above copyright notice and this permission notice shall be included in all | ||
# copies or substantial portions of the Software. | ||
|
||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
# SOFTWARE. | ||
import argparse | ||
|
||
import torchvision.datasets as datasets | ||
|
||
# default dataset path | ||
CIFAR10_ROOT = "/tmp/nvflare/data/cifar10" | ||
|
||
|
||
def define_parser(): | ||
parser = argparse.ArgumentParser() | ||
parser.add_argument("--dataset_path", type=str, default=CIFAR10_ROOT, nargs="?") | ||
args = parser.parse_args() | ||
return args | ||
|
||
|
||
def main(args): | ||
datasets.CIFAR10(root=args.dataset_path, train=True, download=True) | ||
datasets.CIFAR10(root=args.dataset_path, train=False, download=True) | ||
|
||
|
||
if __name__ == "__main__": | ||
main(define_parser()) |
53 changes: 53 additions & 0 deletions
53
...em/06.3_site_security/examples/custom_client_side_job_level_authorization/code/fl_jobs.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,53 @@ | ||
# 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. | ||
|
||
|
||
import os | ||
|
||
from src.fedavg import FedAvg | ||
from src.network import SimpleNetwork | ||
|
||
from nvflare.job_config.api import FedJob | ||
from nvflare.job_config.script_runner import ScriptRunner | ||
|
||
if __name__ == "__main__": | ||
num_clients = 2 | ||
num_rounds = 2 | ||
job_names = ["fedavg", "secret-job"] | ||
train_script = "src/client.py" | ||
config_dir = "/tmp/nvflare/jobs/workdir" | ||
|
||
for job_name in job_names: | ||
job = FedJob(name=job_name, min_clients=num_clients) | ||
controller = FedAvg( | ||
stop_cond="accuracy > 25", | ||
save_filename="global_model.pt", | ||
initial_model=SimpleNetwork(), | ||
num_clients=num_clients, | ||
num_rounds=num_rounds, | ||
) | ||
|
||
job.to_server(controller) | ||
|
||
# Add clients | ||
for i in range(num_clients): | ||
executor = ScriptRunner(script=train_script, script_args="") | ||
job.to(executor, f"site-{i+1}") | ||
|
||
job_config_dir = os.path.join(config_dir, job_name) | ||
print(f"job-config for {job_name} is at ",job_config_dir) | ||
job.export_job(config_dir) | ||
# job.simulator_run(config_dir) | ||
|
||
|
3 changes: 3 additions & 0 deletions
3
...3_site_security/examples/custom_client_side_job_level_authorization/code/requirements.txt
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,3 @@ | ||
torch | ||
torchvision | ||
tensorboard |
Oops, something went wrong.