Skip to content

Commit

Permalink
Fix download address for onnx models (#290)
Browse files Browse the repository at this point in the history
Correct the download address for onnx model in public onnxstorage.
  • Loading branch information
AmosLewis authored Jul 15, 2024
1 parent 1da89a1 commit f634105
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e2eshark/tools/aztestsetup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit f634105

Please sign in to comment.