We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
RandAugment()
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]
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
Parameters:
So num_ops argument of RandAugment() shouldn't accept negative values.
import torchvision torchvision.__version__ # '0.20.1'
The text was updated successfully, but these errors were encountered:
Thanks for the report, feel free to submit a PR for this
Sorry, something went wrong.
RandAugment
Successfully merging a pull request may close this issue.
🐛 Describe the bug
Setting negative values to
num_ops
argument of RandAugment() doesn't do augmentation transformations at all as shown below:And,
num_ops
argument is the number of augmentation transformations according to the doc as shown below:So
num_ops
argument ofRandAugment()
shouldn't accept negative values.Versions
The text was updated successfully, but these errors were encountered: