Last active
August 24, 2021 17:02
-
-
Save Juanmontenegro99/4a8f67b193d3b9cc0b0798694508b9bc 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
# Transformer element | |
transform_objects = [ | |
flip.transformers.data_augmentation.Rotate(mode='random'), | |
flip.transformers.data_augmentation.Flip(mode='x'), | |
flip.transformers.data_augmentation.RandomResize( | |
mode='symmetric_w', | |
relation=’none’, | |
w_percentage_min=0.3, | |
w_percentage_max=0.7 | |
) | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment