-
It seems like when you have nested bbox_params = A.BboxParams(format='albumentations', label_fields=['category_id'])
tf = A.Compose([
A.Compose([
A.Compose([
A.ShiftScaleRotate(always_apply=True),
]),
]),
], bbox_params=bbox_params) This behavior does not seem to be documented anywhere. Can you confirm that this is the intended behavior and that it always holds? |
Beta Was this translation helpful? Give feedback.
Answered by
Dipet
Feb 27, 2023
Replies: 1 comment
-
Yes, it is not documented, but it is works. We do not recomend use |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
AdeelH
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, it is not documented, but it is works. We do not recomend use
Compose
as inner transform. For this purpose we haveSequential