Created
January 13, 2021 00:25
-
-
Save crowsonkb/b1bcbcf20b9dfa63a1248a005e227c46 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from torch.nn import functional as F | |
from torchvision import transforms | |
def random_shift(input, max_shift, mode='replicate', value=0): | |
padded = F.pad(input, max_shift, mode=mode, value=value) | |
return transforms.RandomCrop(input.shape[2:])(padded) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment