Skip to content

Commit db04677

Browse files
authored
Merge pull request #52 from rwightman/randaugment
RandAugment and more
2 parents 4748c6d + 576d360 commit db04677

File tree

7 files changed

+359
-86
lines changed

7 files changed

+359
-86
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ Several (less common) features that I often utilize in my projects are included.
6969
* Training schedules and techniques that provide competitive results (Cosine LR, Random Erasing, Label Smoothing, etc)
7070
* Mixup (as in https://arxiv.org/abs/1710.09412) - currently implementing/testing
7171
* An inference script that dumps output to CSV is provided as an example
72+
* AutoAugment (https://arxiv.org/abs/1805.09501) and RandAugment (https://arxiv.org/abs/1909.13719) ImageNet configurations modeled after impl for EfficientNet training (https://github.com/tensorflow/tpu/blob/master/models/official/efficientnet/autoaugment.py)
7273

7374
## Results
7475

timm/data/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,5 @@
44
from .transforms import *
55
from .loader import create_loader, create_transform
66
from .mixup import mixup_target, FastCollateMixup
7+
from .auto_augment import RandAugment, AutoAugment, rand_augment_ops, auto_augment_policy,\
8+
rand_augment_transform, auto_augment_transform

0 commit comments

Comments
 (0)