Created
February 13, 2023 10:14
-
-
Save gorodnitskiy/285a72d1545a115577021b3baff61135 to your computer and use it in GitHub Desktop.
hydra-configs-simplify-complex-modules-configuring
This file contains hidden or 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
train: | |
order: | |
[ | |
"resize", | |
"random_brightness_contrast", | |
"normalize", | |
] | |
resize: | |
_target_: albumentations.Resize | |
height: 256 | |
width: 256 | |
p: 1.0 | |
random_brightness_contrast: | |
_target_: albumentations.RandomBrightnessContrast | |
brightness_limit: [-0.2, 0.2] | |
contrast_limit: [-0.2, 0.2] | |
p: 0.5 | |
normalize: | |
_target_: albumentations.Normalize | |
mean: [0.485, 0.456, 0.406] | |
std: [0.229, 0.224, 0.225] | |
p: 1.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment