-
-
Notifications
You must be signed in to change notification settings - Fork 293
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
[FEATURE] custom augmentation #139
Comments
Right now you'd want to replace the contents of these two transform functions https://github.com/rwightman/efficientdet-pytorch/blob/master/effdet/data/transforms.py#L233-L275 to add own args with minimal changes. Likely the most I'd do right now this is allow custom transform functions to be passed into the loader factory so that you don't have to change those internal functions. Setting up transforms is fiddly work and albumentations needs a bit of massaging to work here. My next augmentation addition would be a custom mosaic impl. |
Great idea! |
#139. Add random train interpolation support as augmentation.
Same, I have to add some albumentations augmentations into the transforms.py of the effdet-pytorch. |
@rwightman , thank you! |
Is your feature request related to a problem? Please describe.
I am using custom augmentation to train the effdet. And I don`t know good way to integrate my augmentation code to efficientdet-pytorch pipeline. I am using https://github.com/albumentations-team/albumentations
Describe the solution you'd like
I am using custom training loop.
Describe alternatives you've considered
I see two ways: describe how to write own training loop or describe how to integrate custom augmentation code into the efficientdet-pytorch pipeline.
The text was updated successfully, but these errors were encountered: