From 04d11b2e2f161bf25543f08f762d403e3deaca35 Mon Sep 17 00:00:00 2001 From: Bhavya Sharma Date: Tue, 3 Dec 2024 11:32:59 -0800 Subject: [PATCH] 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