From f6341055bfc4e2cd0db406db0903f6a28fa2fa8a Mon Sep 17 00:00:00 2001 From: Chi_Liu <22491986+AmosLewis@users.noreply.github.com> Date: Mon, 15 Jul 2024 10:36:00 -0700 Subject: [PATCH] Fix download address for onnx models (#290) Correct the download address for onnx model in public onnxstorage. --- e2eshark/tools/aztestsetup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2eshark/tools/aztestsetup.py b/e2eshark/tools/aztestsetup.py index 076292846..1a2ee3a76 100755 --- a/e2eshark/tools/aztestsetup.py +++ b/e2eshark/tools/aztestsetup.py @@ -84,7 +84,7 @@ def download_and_setup_onnxmodels(cache_dir, testList): priv_container_name = "onnxprivatestorage" for model in testList: - blob_dir = "e2eshark/" + model + blob_dir = "e2eshark/onnx/models/" + model blob_name = blob_dir + "/model.onnx.zip" dest_file = cache_dir + "/" + blob_name if os.path.exists(dest_file):