-
-
Notifications
You must be signed in to change notification settings - Fork 18
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
Random state argument for consistent random augmentations #47
Comments
So you want to fix the randomness of a stochastic transformation so it always gives the same result? What would |
I was thinking something like this. But I’m not sure if this is much cleaner than the route you have already proposed actually |
Hm, I don't really see an advantage in this. One thing to do could be to implement a wrapper transform |
Fair enough. I think I agree with you the more I think about it |
I would like to suggest an argument for
RandomResizeCrop
and other stochastic transformations. Something likeRandomResizeCrop(seed=...)
would be really convenient for augmenting supervised data with the same random seed. This isn't necessary obviously as you have already given me a helpful workaround, but in case this is easy to implement I wanted to add this suggestionThe text was updated successfully, but these errors were encountered: