Skip to content

Commit f1d8653

Browse files
garymmfacebook-github-bot
authored andcommitted
[ONNX] add test images to repo (pytorch#63717)
Summary: This is better than the status quo: * Test doesn't download files from the internet -> faster and more reliable. * Test doesn't leave the git working directory dirty. Rather than using the original images, I've copied some images from the pytorch/vision repo. This will keep the tests in the two repos in sync, while avoiding adding new assets to the vision repo. See pytorch/vision#4176. Pull Request resolved: pytorch#63717 Reviewed By: janeyx99 Differential Revision: D30466016 Pulled By: malfet fbshipit-source-id: 2c56d4c11b5c74db1764576bf1c95ce4ae714574
1 parent bafd875 commit f1d8653

File tree

3 files changed

+8
-23
lines changed

3 files changed

+8
-23
lines changed
72 KB
Loading

test/onnx/assets/rgb_pytorch.png

575 Bytes
Loading

test/onnx/test_pytorch_onnx_onnxruntime.py

+8-23
Original file line numberDiff line numberDiff line change
@@ -496,35 +496,20 @@ def run_word_language_model(self, model_name):
496496
# Only support CPU version, since tracer is not working in GPU RNN.
497497
self.run_test(model, (x, model.hidden))
498498

499-
def get_image_from_url(self, url, size=(300, 200)):
499+
def get_image(self, rel_path: str, size: Tuple[int, int]) -> torch.Tensor:
500500
import os
501-
from urllib.parse import urlsplit
502-
from urllib import request
503501
from PIL import Image
504502
from torchvision import transforms
505-
from torch._utils_internal import get_writable_path
506503

507-
filename = os.path.basename(urlsplit(url)[2])
508-
data_dir = get_writable_path(os.path.join(os.path.dirname(__file__)))
509-
path = os.path.join(data_dir, filename)
510-
data = request.urlopen(url, timeout=15).read()
511-
with open(path, "wb") as f:
512-
f.write(data)
513-
image = Image.open(path).convert("RGB")
504+
data_dir = os.path.join(os.path.dirname(__file__), "assets")
505+
path = os.path.join(data_dir, *rel_path.split("/"))
506+
image = Image.open(path).convert("RGB").resize(size, Image.BILINEAR)
514507

515-
image = image.resize(size, Image.BILINEAR)
508+
return transforms.ToTensor()(image)
516509

517-
to_tensor = transforms.ToTensor()
518-
return to_tensor(image)
519-
520-
def get_test_images(self):
521-
image_url = "http://farm3.staticflickr.com/2469/3915380994_2e611b1779_z.jpg"
522-
image = self.get_image_from_url(url=image_url, size=(100, 320))
523-
524-
image_url2 = "https://pytorch.org/tutorials/_static/img/tv_tutorial/tv_image05.png"
525-
image2 = self.get_image_from_url(url=image_url2, size=(250, 380))
526-
527-
return [image], [image2]
510+
def get_test_images(self) -> Tuple[List[torch.Tensor], List[torch.Tensor]]:
511+
return ([self.get_image("grace_hopper_517x606.jpg", (100, 320))],
512+
[self.get_image("rgb_pytorch.png", (250, 380))])
528513

529514
@skipIfUnsupportedMinOpsetVersion(11)
530515
@disableScriptTest() # Faster RCNN model is not scriptable

0 commit comments

Comments
 (0)