Update imports to use albumentationsx everywhere#36
Conversation
Reviewer's guide (collapsed on small PRs)Reviewer's GuideStandardizes the transformation implementations to use the File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Pull request overview
This PR updates the import statements in two AlbumentationsX implementation files to use the correct albumentationsx package name instead of albumentations. This aligns the imports with the file names, the LIBRARY constant defined in both files, and the rest of the codebase which already references albumentationsx.
Changes:
- Updated import from
albumentationstoalbumentationsxin the image transform implementation - Updated import from
albumentationstoalbumentationsxin the video transform implementation
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| benchmark/transforms/albumentationsx_impl.py | Updates import to use albumentationsx package, aligning with the file name and LIBRARY constant |
| benchmark/transforms/albumentationsx_video_impl.py | Updates import to use albumentationsx package, aligning with the file name and LIBRARY constant |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
Not really.
but
This is a bit confusing, but wanted the transition to albumentationsx be seamless, without any changes in the code, only in |
Ahh, you are right! Was confused by the transition... |
This pull request updates the import statements in the video and image transform implementation files to use the
albumentationsxlibrary instead ofalbumentations. This change ensures that both modules are using the correct library for their transformations.Library update:
albumentationstoalbumentationsxinbenchmark/transforms/albumentationsx_impl.pyto use the appropriate library for image transformations.albumentationstoalbumentationsxinbenchmark/transforms/albumentationsx_video_impl.pyto use the appropriate library for video transformations.cc: @ternaus
Summary by Sourcery
Update image and video transform implementations to import and use the albumentationsx library consistently.
Enhancements: