Data augmentation methods for deep learning (CutMix, MixUp, PuzzleMix)
Project description
mlxops-aug
Data augmentation methods for deep learning, including CutMix, MixUp, and PuzzleMix.
Installation
pip install mlxops-aug
For PuzzleMix support (requires pygco):
pip install "mlxops-aug[puzzlemix]"
Note:
pygcorequires a C compiler. See pyGCO for installation instructions.
Usage
CutMix / MixUp
from mlxops_aug import CutMixUp
aug = CutMixUp(
num_classes=10,
config={
"use_cutmix": True,
"use_mixup": True,
"alpha": 1.0,
"prob": 0.5,
},
)
x_aug, y_aug = aug(x, y)
PuzzleMix
from mlxops_aug import PuzzleMix
aug = PuzzleMix(
num_classes=10,
config={
"block_num": 2,
"transport": True,
"prob": 1.0,
},
)
Requirements
- Python >= 3.10
- PyTorch >= 2.0
- torchvision >= 0.15
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
mlxops_aug-0.2.1.tar.gz
(2.0 MB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mlxops_aug-0.2.1.tar.gz.
File metadata
- Download URL: mlxops_aug-0.2.1.tar.gz
- Upload date:
- Size: 2.0 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f476cef67b766a8700cd9663c1ca7dc9015f7e7b3fa0a43e2e1c4b3fdcb97c81
|
|
| MD5 |
006850ab47b3bdbfa040988f14ffe467
|
|
| BLAKE2b-256 |
237fed316bdb94a36c14bf2f7b8cf16bd2e118b05fc33a8715f1822c9b4ded52
|
File details
Details for the file mlxops_aug-0.2.1-py3-none-any.whl.
File metadata
- Download URL: mlxops_aug-0.2.1-py3-none-any.whl
- Upload date:
- Size: 25.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
65f49e2159b1a83d4f0178729f7d6f78a1f29d4ec76c9081beb8ca8b71975b48
|
|
| MD5 |
c1ed6964513c51430250c453525aaec9
|
|
| BLAKE2b-256 |
bcb8ba814e97f4236a253ad06be591f78cf103743a2144fd1425f345ebecf530
|