class documentation
Compose batch-aware Albumentations transforms.
| Method | __call__ |
Apply the composed transforms to a batch. |
| Method | __init__ |
Compose batch transforms. |
| Instance Variable | batch |
Product of nested transform batch sizes, ∏ibi. |
| Instance Variable | transforms |
Batch transformations in composition order. |
| Static Method | _make |
Undocumented |
Apply the composed transforms to a batch.
| Parameters | |
datalist[ | Batch of Albumentations data dictionaries. Its length must equal batch_size. |
| Returns | |
dict[ | Single transformed data dictionary. |
| Raises | |
ValueError | If len(data_batch) does not match batch_size. |
Compose batch transforms.
| Parameters | |
transforms:TransformsSeqType | Transformations to compose. |
| **kwargs | Additional arguments passed to A.Compose. |