From 95d65d0df3585e9c477d5dc290e6ded246414a58 Mon Sep 17 00:00:00 2001 From: Vikas Kumar Date: Thu, 2 Jan 2020 20:14:38 -0800 Subject: [PATCH 1/4] Adding zcc automation for xgboost --- config/install_smdebug.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config/install_smdebug.sh b/config/install_smdebug.sh index 2f1760d1b..4be170952 100644 --- a/config/install_smdebug.sh +++ b/config/install_smdebug.sh @@ -23,3 +23,6 @@ fi if [ "$run_pytest_pytorch" == 'enable' ]; then ./config/check_smdebug_install.sh torch fi +if [ "$run_pytest_xgboost" == 'enable' ]; then + ./config/check_smdebug_install.sh xgboost +fi From bdc52865e64e9aafce9e298ab75d1dc8930a5bae Mon Sep 17 00:00:00 2001 From: Vikas Kumar Date: Thu, 2 Jan 2020 20:20:19 -0800 Subject: [PATCH 2/4] Adding tensorflow-datasets for TF --- config/install_smdebug.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/config/install_smdebug.sh b/config/install_smdebug.sh index 4be170952..b0e27f2c5 100644 --- a/config/install_smdebug.sh +++ b/config/install_smdebug.sh @@ -19,6 +19,7 @@ if [ "$run_pytest_mxnet" == 'enable' ]; then fi if [ "$run_pytest_tensorflow" == 'enable' ]; then ./config/check_smdebug_install.sh tensorflow + pip install tensorflow_datasets fi if [ "$run_pytest_pytorch" == 'enable' ]; then ./config/check_smdebug_install.sh torch From 36282825c297ea34d55ec73a6fa4908d829db00d Mon Sep 17 00:00:00 2001 From: Vikas Kumar Date: Thu, 2 Jan 2020 20:25:30 -0800 Subject: [PATCH 3/4] removing force reinstall --- config/install_smdebug.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/install_smdebug.sh b/config/install_smdebug.sh index b0e27f2c5..fbe626963 100644 --- a/config/install_smdebug.sh +++ b/config/install_smdebug.sh @@ -8,7 +8,7 @@ cd $CODEBUILD_SRC_DIR if [ "$SMDEBUG_S3_BINARY" ]; then mkdir -p s3_pip_binary aws s3 cp "$SMDEBUG_S3_BINARY" s3_pip_binary - pip install --force-reinstall --upgrade s3_pip_binary/*.whl + pip install --upgrade s3_pip_binary/*.whl else python setup.py bdist_wheel --universal && pip install --upgrade --force-reinstall dist/*.whl fi From b5523289ee4dffaaa88dc4b88302c506c0807d60 Mon Sep 17 00:00:00 2001 From: Vikas Kumar Date: Thu, 2 Jan 2020 20:28:37 -0800 Subject: [PATCH 4/4] install latest pyYaml for xgboost --- config/install_smdebug.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/config/install_smdebug.sh b/config/install_smdebug.sh index fbe626963..61f951523 100644 --- a/config/install_smdebug.sh +++ b/config/install_smdebug.sh @@ -26,4 +26,5 @@ if [ "$run_pytest_pytorch" == 'enable' ]; then fi if [ "$run_pytest_xgboost" == 'enable' ]; then ./config/check_smdebug_install.sh xgboost + pip install --ignore-installed PyYAML fi