forked from apache/tvm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[TEST] Cache test data (apache#2921)
- Loading branch information
Showing
7 changed files
with
115 additions
and
139 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,24 @@ | ||
from six.moves import urllib | ||
import os | ||
from PIL import Image | ||
import numpy as np | ||
|
||
def download(url, path, overwrite=False): | ||
if os.path.exists(path) and not overwrite: | ||
return | ||
print('Downloading {} to {}.'.format(url, path)) | ||
urllib.request.urlretrieve(url, path) | ||
from tvm.contrib.download import download_testdata | ||
|
||
def get_mobilenet(): | ||
url = 'https://docs-assets.developer.apple.com/coreml/models/MobileNet.mlmodel' | ||
dst = 'mobilenet.mlmodel' | ||
real_dst = os.path.abspath(os.path.join(os.path.dirname(__file__), dst)) | ||
download(url, real_dst) | ||
return os.path.abspath(real_dst) | ||
real_dst = download_testdata(url, dst, module='coreml') | ||
return real_dst | ||
|
||
def get_resnet50(): | ||
url = 'https://docs-assets.developer.apple.com/coreml/models/Resnet50.mlmodel' | ||
dst = 'resnet50.mlmodel' | ||
real_dst = os.path.abspath(os.path.join(os.path.dirname(__file__), dst)) | ||
download(url, real_dst) | ||
return os.path.abspath(real_dst) | ||
real_dst = download_testdata(url, dst, module='coreml') | ||
return real_dst | ||
|
||
def get_cat_image(): | ||
url = 'https://gist.githubusercontent.com/zhreshold/bcda4716699ac97ea44f791c24310193/raw/fa7ef0e9c9a5daea686d6473a62aacd1a5885849/cat.png' | ||
dst = 'cat.png' | ||
real_dst = os.path.abspath(os.path.join(os.path.dirname(__file__), dst)) | ||
download(url, real_dst) | ||
real_dst = download_testdata(url, dst, module='coreml') | ||
img = Image.open(real_dst).resize((224, 224)) | ||
img = np.transpose(img, (2, 0, 1))[np.newaxis, :] | ||
return np.asarray(img) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.