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

num_ops argument of RandAugment() shouldn't accept negative values #8938

Closed
hyperkai opened this issue Feb 25, 2025 · 1 comment · Fixed by #8994
Closed

num_ops argument of RandAugment() shouldn't accept negative values #8938

hyperkai opened this issue Feb 25, 2025 · 1 comment · Fixed by #8994

Comments

@hyperkai
Copy link

🐛 Describe the bug

Setting negative values to num_ops argument of RandAugment() doesn't do augmentation transformations at all as shown below:

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

my_data = OxfordIIITPet(
    root="data",
    transform=RandAugment(num_ops=-1)
    # transform=RandAugment(num_ops=-10)
    # transform=RandAugment(num_ops=-100)
)

my_data[0][0]

Image

And, num_ops argument is the number of augmentation transformations according to the doc as shown below:

Parameters:

  • num_ops (int, optional) – Number of augmentation transformations to apply sequentially

So num_ops argument of RandAugment() shouldn't accept negative values.

Versions

import torchvision

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

Thanks for the report, feel free to submit a PR for this

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