-
Notifications
You must be signed in to change notification settings - Fork 1.2k
feature: network isolation mode for xgboost #2626
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
Merged
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
a58ce71
feature: network isolation mode for xgboost
e91eeb1
Merge branch 'master' into xgboost_network_isolation
ahsan-z-khan 0af675e
Merge branch 'master' into xgboost_network_isolation
shreyapandit 144fd07
Merge branch 'master' into xgboost_network_isolation
navinsoni 406785c
Merge branch 'master' into xgboost_network_isolation
shreyapandit 5ad0756
Merge branch 'master' into xgboost_network_isolation
ahsan-z-khan 14953bd
Merge branch 'master' into xgboost_network_isolation
shreyapandit 1b19f3c
Merge branch 'master' into xgboost_network_isolation
awsbmillare b038943
feature: network isolation mode for xgboost
77a5a5e
Add integ tests for xgboost net iso
7c880a5
fix import
86f6b08
fix job_name name
3c2fc2b
Merge branch 'master' into xgboost_network_isolation
shreyapandit d533fa7
fix black-check
4bb91b5
Merge branch 'master' into xgboost_network_isolation
shreyapandit 97d63cd
Revert local test setup changes
9427b8e
Merge branch 'master' into xgboost_network_isolation
navinsoni 1f43a59
Merge branch 'master' into xgboost_network_isolation
navinsoni File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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,50 @@ | ||
import argparse | ||
import os | ||
|
||
from sagemaker_xgboost_container.data_utils import get_dmatrix | ||
|
||
import xgboost as xgb | ||
|
||
model_filename = "xgboost-model" | ||
|
||
if __name__ == "__main__": | ||
parser = argparse.ArgumentParser() | ||
|
||
# Sagemaker specific arguments. Defaults are set in the environment variables. | ||
parser.add_argument( | ||
"--model_dir", type=str, default=os.environ.get("SM_MODEL_DIR", "/opt/ml/model") | ||
) | ||
parser.add_argument( | ||
"--train", | ||
type=str, | ||
default=os.environ.get("SM_CHANNEL_TRAIN", "/opt/ml/input/data/abalone"), | ||
) | ||
|
||
args, _ = parser.parse_known_args() | ||
|
||
dtrain = get_dmatrix(args.train, "libsvm") | ||
|
||
params = { | ||
"max_depth": 5, | ||
"eta": 0.2, | ||
"gamma": 4, | ||
"min_child_weight": 6, | ||
"subsample": 0.7, | ||
"verbosity": 2, | ||
"objective": "reg:squarederror", | ||
"tree_method": "auto", | ||
"predictor": "auto", | ||
} | ||
|
||
booster = xgb.train(params=params, dtrain=dtrain, num_boost_round=50) | ||
booster.save_model(args.model_dir + "/" + model_filename) | ||
|
||
|
||
def model_fn(model_dir): | ||
"""Deserialize and return fitted model. | ||
|
||
Note that this should have the same name as the serialized model in the _xgb_train method | ||
""" | ||
booster = xgb.Booster() | ||
booster.load_model(os.path.join(model_dir, model_filename)) | ||
return booster |
This file contains hidden or 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
This file contains hidden or 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
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.
Uh oh!
There was an error while loading. Please reload this page.