We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8866af commit 5ac4e6cCopy full SHA for 5ac4e6c
rastervision_pytorch_backend/rastervision/pytorch_backend/examples/semantic_segmentation/utils.py
@@ -2,7 +2,8 @@
2
import albumentations as A
3
4
example_rgb_transform = A.Compose([
5
- A.Flip(),
+ A.VerticalFlip(),
6
+ A.HorizontalFlip(),
7
A.Transpose(),
8
A.RandomRotate90(),
9
A.ShiftScaleRotate(),
@@ -38,7 +39,8 @@
38
39
# not all transforms work with more than 3 channels, here are
40
# some of the ones that do
41
example_multiband_transform = A.Compose([
42
43
44
45
46
0 commit comments