Object detection with augmentors #1706
Answered
by
AdeelH
greenhawktobias
asked this question in
Q&A
-
Hi,
|
Beta Was this translation helpful? Give feedback.
Answered by
AdeelH
Feb 10, 2023
Replies: 1 comment 3 replies
-
You are defining the variable data = ObjectDetectionGeoDataConfig(
...
aug_transform=A.to_dict(data_augmentation_transform),
...
) Same thing for ObjectDetectionImageDataConfig, if you are using |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
greenhawktobias
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You are defining the variable
data_augmentation_transform
but not passing it to theDataConfig
. You can do it like so:Same thing for ObjectDetectionImageDataConfig, if you are using
nochip=False
.