Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Setting float and bool values to quality argument of JPEG() gets the indirect errors #8917

Closed
hyperkai opened this issue Feb 19, 2025 · 1 comment · Fixed by #8995
Closed

Comments

@hyperkai
Copy link

🐛 Describe the bug

Setting float and bool values to quality argument of JPEG() gets the indirect errors as shown below:

from torchvision.transforms.v2 import JPEG

JPEG(quality=5.3) # Error

TypeError: quality should be a sequence of length 2.

from torchvision.datasets import OxfordIIITPet
from torchvision.transforms.v2 import JPEG

my_data = OxfordIIITPet(
    root="data",
    transform=JPEG(quality=True)
)

my_data[0] # Error
TypeError: randint() received an invalid combination of arguments - got (bool, int, tuple), but expected one of:
 * (int high, tuple of ints size, *, torch.Generator generator, Tensor out = None, torch.dtype dtype = None, torch.layout layout = None, torch.device device = None, bool pin_memory = False, bool requires_grad = False)
 * (int high, tuple of ints size, *, Tensor out = None, torch.dtype dtype = None, torch.layout layout = None, torch.device device = None, bool pin_memory = False, bool requires_grad = False)
 * (int low, int high, tuple of ints size, *, torch.Generator generator, Tensor out = None, torch.dtype dtype = None, torch.layout layout = None, torch.device device = None, bool pin_memory = False, bool requires_grad = False)
 * (int low, int high, tuple of ints size, *, Tensor out = None, torch.dtype dtype = None, torch.layout layout = None, torch.device device = None, bool pin_memory = False, bool requires_grad = False)

So they should be something direct like below:

TypeError: quality argument must be int

Versions

import torchvision

torchvision.__version__ # '0.20.1'
@NicolasHug
Copy link
Member

Thanks for the report @hyperkai , feel free to submit a PR for a better error message

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants