-
Notifications
You must be signed in to change notification settings - Fork 215
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
Implement task_group filtering for FedEval #1226
Open
ishaileshpant
wants to merge
1
commit into
securefederatedai:develop
Choose a base branch
from
ishaileshpant:poc-mode-assigner
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Implement task_group filtering for FedEval #1226
ishaileshpant
wants to merge
1
commit into
securefederatedai:develop
from
ishaileshpant:poc-mode-assigner
Conversation
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
ishaileshpant
force-pushed
the
poc-mode-assigner
branch
19 times, most recently
from
December 24, 2024 11:19
f1fcdcf
to
93248b8
Compare
ishaileshpant
force-pushed
the
poc-mode-assigner
branch
from
January 3, 2025 06:40
93248b8
to
baeae12
Compare
ishaileshpant
changed the title
[Please Don't Merge] implement a new ModeBasedAssigner for FedEval
Implement a new ModeBasedAssigner for FedEval
Jan 5, 2025
ishaileshpant
force-pushed
the
poc-mode-assigner
branch
4 times, most recently
from
January 5, 2025 11:30
d63c561
to
2331f75
Compare
ishaileshpant
force-pushed
the
poc-mode-assigner
branch
2 times, most recently
from
January 21, 2025 15:36
ddaa348
to
858b2ce
Compare
ishaileshpant
force-pushed
the
poc-mode-assigner
branch
3 times, most recently
from
January 21, 2025 16:11
5d77eb7
to
9ab44a0
Compare
ishaileshpant
changed the title
Implement mode-based filtering for FedEval
Implement task_group filtering for FedEval
Jan 21, 2025
ishaileshpant
force-pushed
the
poc-mode-assigner
branch
5 times, most recently
from
January 21, 2025 16:47
d811ab5
to
1a0ef16
Compare
ishaileshpant
force-pushed
the
poc-mode-assigner
branch
from
January 21, 2025 19:31
1a0ef16
to
af5de55
Compare
ishaileshpant
force-pushed
the
poc-mode-assigner
branch
3 times, most recently
from
January 22, 2025 05:51
9aba086
to
e8ca274
Compare
ishaileshpant
force-pushed
the
poc-mode-assigner
branch
4 times, most recently
from
January 22, 2025 09:56
193ddf7
to
d2b46f0
Compare
ishaileshpant
force-pushed
the
poc-mode-assigner
branch
from
January 22, 2025 10:21
d2b46f0
to
57f5094
Compare
tests/openfl/component/assigner/test_random_grouped_assigner.py
Dismissed
Show dismissed
Hide dismissed
tests/openfl/component/assigner/test_random_grouped_assigner.py
Dismissed
Show dismissed
Hide dismissed
tests/openfl/component/assigner/test_random_grouped_assigner.py
Dismissed
Show dismissed
Hide dismissed
- update all the sub-classes that use task_groups to use the decorator - update fedeval sample workspace to use default assigner, tasks and aggregator - use of federated-evaluation/aggregator.yaml for FedEval specific workspace example to use round_number as 1 - removed assigner and tasks yaml from defaults/federated-evaluation, superseded by default assigner/tasks - added additional checks for assigner sub-classes that might not have task_groups - Addressing review comments - Updated existing test cases for Assigner sub-classes - Remove hard-coded setting in assigner for torch_cnn_mnist ws, refer to default as in other Workspaces - Use aggregator supplied --task_group to override the assinger selected_task_group - update existing test cases of aggregator cli - add test cases for the decorator - rebased 23-Jan.2 Signed-off-by: Shailesh Pant <[email protected]>
ishaileshpant
force-pushed
the
poc-mode-assigner
branch
from
January 23, 2025 17:12
57f5094
to
10b6993
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
implement a new task_group filtering decorator in Assigner class
update all the sub-classes that use task_groups to use the decorator
update fedeval sample workspace to use default assigner, tasks and aggregator
use of federated-evaluation/aggregator.yaml for FedEval specific workspace example to use round_number as 1
removed assigner and tasks yaml from defaults/federated-evaluation, superseded by default assigner/tasks
Rebase 21-Jan-2025.2
added additional checks for assigner sub-classes that might not have task_groups
Addressing review comments
Updated existing test cases for Assigner sub-classes
Remove hard-coded setting in assigner for torch_cnn_mnist ws, refer to default as in other Workspaces
Use aggregator supplied --task_group to override the assinger selected_task_group
update existing test cases of aggregator cli
add test cases for the decorator
Signed-off-by: Shailesh Pant [email protected]
Testcases for task_group_filtering decorator
Testing for all existing workspaces
we shouldn't be saving any new models if running in evaluation mode.
Change all workspaces to use new Assigner [Not needed as defaults ensure all workspace, by default use new assigner]