-
Hello, this is my first time to use timm after reading Chris Hughes's long article. I'm confused about how to apply auto_augment when creating a data loader.
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
it's 3 augmentations to the same image |
Beta Was this translation helpful? Give feedback.
-
if you aren't seeing any augmentation and you are using the exact line as above, you need |
Beta Was this translation helpful? Give feedback.
n3
applies 3 layers of random augmentation to the same image producing one augmented output (so output will also be 32)if you aren't seeing any augmentation and you are using the exact line as above, you need
is_training=True
active to apply train time augmentations as per the underlying transform creation fn https://github.com/rwightman/pytorch-image-models/blob/7cdd164d7775c444ee50afa6b825c843038f1b07/timm/data/transforms_factory.py#L167