-
Notifications
You must be signed in to change notification settings - Fork 204
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
Enable federated XGBoost using bootstrap aggregation in Task Runner #1151
Open
kta-intel
wants to merge
22
commits into
securefederatedai:develop
Choose a base branch
from
kta-intel:xgboost-fedbagging
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
Enable federated XGBoost using bootstrap aggregation in Task Runner #1151
kta-intel
wants to merge
22
commits into
securefederatedai:develop
from
kta-intel:xgboost-fedbagging
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
Signed-off-by: kta-intel <[email protected]>
Signed-off-by: kta-intel <[email protected]>
Signed-off-by: kta-intel <[email protected]>
Signed-off-by: kta-intel <[email protected]>
Signed-off-by: kta-intel <[email protected]>
Signed-off-by: kta-intel <[email protected]>
Signed-off-by: kta-intel <[email protected]>
Signed-off-by: kta-intel <[email protected]>
Signed-off-by: kta-intel <[email protected]>
Signed-off-by: kta-intel <[email protected]>
Signed-off-by: kta-intel <[email protected]>
Signed-off-by: kta-intel <[email protected]>
Signed-off-by: kta-intel <[email protected]>
Signed-off-by: kta-intel <[email protected]>
This reverts commit d3937ef. Signed-off-by: kta-intel <[email protected]>
kta-intel
force-pushed
the
xgboost-fedbagging
branch
from
November 15, 2024 21:50
6c79178
to
dd2027c
Compare
Signed-off-by: kta-intel <[email protected]>
Signed-off-by: kta-intel <[email protected]>
Signed-off-by: kta-intel <[email protected]>
kta-intel
changed the title
[WIP] Enable federated XGBoost using bootstrap aggregation in Task Runner
Enable federated XGBoost using bootstrap aggregation in Task Runner
Nov 15, 2024
Signed-off-by: kta-intel <[email protected]>
Signed-off-by: kta-intel <[email protected]>
Signed-off-by: kta-intel <[email protected]>
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.
This PR enables a TaskRunner-based federated XGBoost using the bootstrap aggregation
Specifically this PR:
xgb_higgs
task runner workspace to train on the higgs dataset [ref] with all required code (i.e.src/taskrunner.py
,src/dataloader.py
,plan/*.yaml
, etc.tasks_xgb.yaml
to enable newFedBaggingXGBoost
aggregation when running xgb training workloadsdelta_updates
parameter to Aggregator in order to bypass delta updating (for deep learning models getting weight deltas makes sense since the model size should stay relatively consistent, for tree-based algorithms, this makes less sense because more trees are added over time)delta_updates
is set totrue
by default to preserve normal behavior. xgboost taskrunner explicitly sets it tofalse
to bypass itloader_xgb.py
as the backend / superclass tosrc/dataloader.py
runner_xgb.py
as the backend / superclass tosrc/taskrunner.py
aggregation_function.fed_bagging
which bags the latest trees to a global model, consistent with currently accept federated xgboost algorithms in the industry