Skip to content

Commit

Permalink
Revert "Fix download address for onnx models (#290)" (#299)
Browse files Browse the repository at this point in the history
This reverts commit f634105. 
Revert the PR #290

Now, all the upload list can just provide the model_name in each line. 
The download/run list need the onnx/models/model_name in each line.
  • Loading branch information
AmosLewis authored Jul 24, 2024
1 parent 3b41d85 commit f02ed80
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/onnx/models/" + model
blob_dir = "e2eshark/" + 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 f02ed80

Please sign in to comment.