Skip to content

Commit

Permalink
moved asset to s3
Browse files Browse the repository at this point in the history
  • Loading branch information
kali committed Nov 29, 2024
1 parent 6b2e7b7 commit 37132e0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion api/c/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ tract.h:
cp ../ffi/tract.h .

mobilenet_v2_1.0.onnx.nnef.tgz:
wget -q https://sfo2.digitaloceanspaces.com/nnef-public/mobilenet_v2_1.0.onnx.nnef.tgz
wget -q https://s3.amazonaws.com/tract-ci-builds/tests/mobilenet_v2_1.0.onnx.nnef.tgz
2 changes: 1 addition & 1 deletion api/py/tests/mobilenet_onnx_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def setup_module(module):
)
if not Path("mobilenet_v2_1.0.onnx.nnef.tgz").exists():
urllib.request.urlretrieve(
"https://sfo2.digitaloceanspaces.com/nnef-public/mobilenet_v2_1.0.onnx.nnef.tgz",
"https://s3.amazonaws.com/tract-ci-builds/tests/mobilenet_v2_1.0.onnx.nnef.tgz",
"mobilenet_v2_1.0.onnx.nnef.tgz"
)

Expand Down
2 changes: 1 addition & 1 deletion api/tests/mobilenet/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ fn ensure_models() -> anyhow::Result<()> {
"mobilenetv2-7.onnx",
),
(
"https://sfo2.digitaloceanspaces.com/nnef-public/mobilenet_v2_1.0.onnx.nnef.tgz",
"https://s3.amazonaws.com/tract-ci-builds/tests/mobilenet_v2_1.0.onnx.nnef.tgz",
"mobilenet_v2_1.0.onnx.nnef.tgz",
),
] {
Expand Down

0 comments on commit 37132e0

Please sign in to comment.