Skip to content

Commit

Permalink
Merge branch 'main' into tf_algos
Browse files Browse the repository at this point in the history
  • Loading branch information
chesterxgchen authored Jul 29, 2024
2 parents 724a996 + d758f07 commit 32bdbe2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

# NVIDIA FLARE

[NVIDIA FLARE](https://nvflare.readthedocs.io/en/main/index.html) (**NV**IDIA **F**ederated **L**earning **A**pplication **R**untime **E**nvironment)
[NVIDIA FLARE](https://nvidia.github.io/NVFlare/) (**NV**IDIA **F**ederated **L**earning **A**pplication **R**untime **E**nvironment)
is a domain-agnostic, open-source, extensible SDK that allows researchers and data scientists to adapt existing ML/DL workflows to a federated paradigm.
It enables platform developers to build a secure, privacy-preserving offering for a distributed multi-party collaboration.

Expand Down
2 changes: 1 addition & 1 deletion nvflare/apis/impl/bcast_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def check_task_exit(self, task: Task) -> Tuple[bool, TaskCompletionStatus]:
return True, TaskCompletionStatus.OK

# if min_responses is 0, need to have all client tasks responded
if task.props[_KEY_MIN_RESPS] == 0 and clients_not_responded > 0:
if task.props[_KEY_MIN_RESPS] == 0 and clients_responded < len(task.targets):
return False, TaskCompletionStatus.IGNORED

# check if minimum responses are received
Expand Down

0 comments on commit 32bdbe2

Please sign in to comment.