Optimize the execution time of test case test_rgb_hsv.py

This commit is contained in:
qianlong 2020-03-30 20:16:45 +08:00
parent f1b722297e
commit 8c88b39da1
1 changed files with 2 additions and 0 deletions

View File

@ -133,6 +133,7 @@ def test_rgb_hsv_pipeline():
# First dataset
transforms1 = [
vision.Decode(),
vision.Resize([64, 64]),
vision.ToTensor()
]
transforms1 = vision.ComposeOp(transforms1)
@ -142,6 +143,7 @@ def test_rgb_hsv_pipeline():
# Second dataset
transforms2 = [
vision.Decode(),
vision.Resize([64, 64]),
vision.ToTensor(),
vision.RgbToHsv(),
vision.HsvToRgb()