Skip to content

Instantly share code, notes, and snippets.

@DanielTakeshi
Last active November 7, 2018 21:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DanielTakeshi/bae674deb74bced22fdc3ca39c4fe3aa to your computer and use it in GitHub Desktop.
Save DanielTakeshi/bae674deb74bced22fdc3ca39c4fe3aa to your computer and use it in GitHub Desktop.
PyTorch transforms. See this for saving images: https://gist.github.com/DanielTakeshi/bbaf432347aafa2e9878e93fd6982fd7
I am testing different PyTorch transforms on my data, and saving sample
images as they are loaded during training. See examples below.
@DanielTakeshi
Copy link
Author

175             transforms.RandomResizedCrop(224, scale=(0.8, 1.0))
176             transforms.RandomVerticalFlip()

So when they say vertical flip, that means a flip ABOUT THE HORIZONTAL AXIS. It is more intuitive their way.

TL;DR in my code use the HORIZONTAL TRANSFORM, so we flip about the vertical axis.

train_0000_success train_0001_failure train_0002_success

train_0003_failure train_0004_success train_0005_success

train_0006_success train_0007_success train_0008_failure

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment