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.
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
xgboost-comprehensive with bagging aggregation #2554
xgboost-comprehensive with bagging aggregation #2554
Changes from 18 commits
8529119
fe2d3e0
7efcdbf
6ddb448
34452a5
b272f11
0fb9d36
d0b33be
91af548
b965843
6bbee08
4b92c81
57bde18
727a028
237ea18
c91f7ad
054f17f
6973ecb
28b7305
39ced8b
ebe35a5
749a960
40d0bed
5cdfc37
c2f85c0
b63a0b0
5484a47
0ad1c43
b948294
68d065e
b0348c9
f10d4b5
a0c65eb
5656bb4
35207f5
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just one more question. In the case of centralized eval each of the (federated) nodes also uses centralized dataset for the federated evaluation. Is that intended, or is it controlled in the server?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Doing centralised eval or not is controlled by server with
--centralised_eval
. If not centralised eval, the user can still choose to use centralised test set or client test set (splitting from client's training data) to do the client evaluation. e.g., doingclient.py --centralised_eval
will enable the client evaluation on centralised test set.