From 2170f6ba0dd6175731d1a04a18a8eb9960a49d8f Mon Sep 17 00:00:00 2001 From: Bhavya Sharma Date: Tue, 26 Nov 2024 18:57:44 -0800 Subject: [PATCH 1/4] Added comment for supporting SIngle GPU for autogluon notebook. --- test/test_artifacts/v2/scripts/run_autogluon_tests.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test_artifacts/v2/scripts/run_autogluon_tests.sh b/test/test_artifacts/v2/scripts/run_autogluon_tests.sh index 7a136c25..1750d8e2 100644 --- a/test/test_artifacts/v2/scripts/run_autogluon_tests.sh +++ b/test/test_artifacts/v2/scripts/run_autogluon_tests.sh @@ -13,5 +13,6 @@ ret=$? if [ $ret -eq 0 ] then + # Note: This notebook only supports a single GPU setup. Running on multi-GPU systems may lead to errors. jupyter nbconvert --execute --to python docs/tutorials/multimodal/multimodal_prediction/multimodal-quick-start.ipynb fi From 12dda69e96575bb32d048ad2c0185700dab9ecb7 Mon Sep 17 00:00:00 2001 From: Bhavya Sharma Date: Tue, 3 Dec 2024 11:31:06 -0800 Subject: [PATCH 2/4] echo message on console before running autogluon MM-quickstart notebook Message will be printed on the console for user to inform that autogluon multimodel-quick-start.ipynb only supports single GPU. --- test/test_artifacts/v2/scripts/run_autogluon_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_artifacts/v2/scripts/run_autogluon_tests.sh b/test/test_artifacts/v2/scripts/run_autogluon_tests.sh index 1750d8e2..ad725533 100644 --- a/test/test_artifacts/v2/scripts/run_autogluon_tests.sh +++ b/test/test_artifacts/v2/scripts/run_autogluon_tests.sh @@ -13,6 +13,6 @@ ret=$? if [ $ret -eq 0 ] then - # Note: This notebook only supports a single GPU setup. Running on multi-GPU systems may lead to errors. + echo "This notebook only supports a single GPU setup. Running on multi-GPU systems may lead to unexpected errors" jupyter nbconvert --execute --to python docs/tutorials/multimodal/multimodal_prediction/multimodal-quick-start.ipynb fi From 04d11b2e2f161bf25543f08f762d403e3deaca35 Mon Sep 17 00:00:00 2001 From: Bhavya Sharma Date: Tue, 3 Dec 2024 11:32:59 -0800 Subject: [PATCH 3/4] echo message on console before running autogluon MM-quickstart notebook Message will be printed on the console for user to inform that autogluon multimodel-quick-start.ipynb only supports single GPU. --- test/test_artifacts/v1/scripts/run_autogluon_tests.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test_artifacts/v1/scripts/run_autogluon_tests.sh b/test/test_artifacts/v1/scripts/run_autogluon_tests.sh index 7a136c25..ad725533 100644 --- a/test/test_artifacts/v1/scripts/run_autogluon_tests.sh +++ b/test/test_artifacts/v1/scripts/run_autogluon_tests.sh @@ -13,5 +13,6 @@ ret=$? if [ $ret -eq 0 ] then + echo "This notebook only supports a single GPU setup. Running on multi-GPU systems may lead to unexpected errors" jupyter nbconvert --execute --to python docs/tutorials/multimodal/multimodal_prediction/multimodal-quick-start.ipynb fi From 3e3ecb2823a14d9f32728e93e9c03d61f5dff93a Mon Sep 17 00:00:00 2001 From: Bhavya Sharma Date: Tue, 3 Dec 2024 11:34:10 -0800 Subject: [PATCH 4/4] echo message on console before running autogluon MM-quickstart notebook Message will be printed on the console for user to inform that autogluon multimodel-quick-start.ipynb only supports single GPU. --- test/test_artifacts/v0/scripts/run_autogluon_tests.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test_artifacts/v0/scripts/run_autogluon_tests.sh b/test/test_artifacts/v0/scripts/run_autogluon_tests.sh index 09d70554..1d4607a4 100644 --- a/test/test_artifacts/v0/scripts/run_autogluon_tests.sh +++ b/test/test_artifacts/v0/scripts/run_autogluon_tests.sh @@ -13,5 +13,6 @@ ret=$? if [ $ret -eq 0 ] then + echo "This notebook only supports a single GPU setup. Running on multi-GPU systems may lead to unexpected errors" jupyter nbconvert --execute --to python docs/tutorials/multimodal/multimodal_prediction/multimodal-quick-start.ipynb fi