ExplorerData ScienceMachine Learning
Research PaperResearchia:202608.12061

AlbumentationsX: One Augmentation Pipeline for Images and Related Annotations

Vladimir Iglovikov

Abstract

Augmentation can corrupt a training example when an image and its annotations receive different random changes. A crop must use the same coordinates for the image, mask, boxes, keypoints, stereo views, video frames, or volume. Code paths that choose these values separately can silently misalign the data. AlbumentationsX keeps the transform list, probabilities, annotation settings, and random seed in one Compose object. Each call chooses random values once and applies them to every supported pa...

Submitted: August 12, 2026Subjects: Machine Learning; Data Science

Description / Details

Augmentation can corrupt a training example when an image and its annotations receive different random changes. A crop must use the same coordinates for the image, mask, boxes, keypoints, stereo views, video frames, or volume. Code paths that choose these values separately can silently misalign the data. AlbumentationsX keeps the transform list, probabilities, annotation settings, and random seed in one Compose object. Each call chooses random values once and applies them to every supported part of the training example. The library keeps each object's mask, box, and label together and lets projects add their own transforms. It can also save the pipeline definition, show what happened in one call, and run that call again. The examples place Compose after files have been decoded into arrays and before PyTorch groups examples into a batch. AlbumentationsX executes the declared transforms. Practitioners still decide whether a flip, crop, color change, or other operation preserves the correct label for their task.


Source: arXiv:2608.11123v1 - http://arxiv.org/abs/2608.11123v1 PDF: https://arxiv.org/pdf/2608.11123v1 Original Link: http://arxiv.org/abs/2608.11123v1

Please sign in to join the discussion.

No comments yet. Be the first to share your thoughts!

Access Paper
View Source PDF
Submission Info
Date:
Aug 12, 2026
Topic:
Data Science
Area:
Machine Learning
Comments:
0
Bookmark
AlbumentationsX: One Augmentation Pipeline for Images and Related Annotations | Researchia