Skip to content

Commit

Permalink
Fix modelzoo test yet again due to modelzoo repo directory renaming (o…
Browse files Browse the repository at this point in the history
…nnx#2678)

Signed-off-by: Gong Su <[email protected]>
  • Loading branch information
gongsu832 authored Jan 11, 2024
1 parent e2b62e2 commit e11dc18
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions utils/RunONNXModelZoo.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@
"""

# modelzoo has been completely restructured and the original models are now under
# the "archive" directory. We could check all the new models as well but that
# the "validated" directory. We could check all the new models as well but that
# would take very long (about 6 hours on the Jenkins CI) so we still only check
# the original models under "archive".
FIND_MODEL_PATHS_CMD = ["find", "archive", "-type", "f", "-name", "*.tar.gz"]
# the original models under "validated".
FIND_MODEL_PATHS_CMD = ["find", "validated", "-type", "f", "-name", "*.tar.gz"]
GIT_CMD = ["git"]
# Use curl instead of wget since most systems have curl preinstalled
# and curl is more flexible than wget
Expand Down

0 comments on commit e11dc18

Please sign in to comment.