Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save gorodnitskiy/285a72d1545a115577021b3baff61135 to your computer and use it in GitHub Desktop.
Save gorodnitskiy/285a72d1545a115577021b3baff61135 to your computer and use it in GitHub Desktop.
hydra-configs-simplify-complex-modules-configuring
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