Browse Source

rm some transforms

chulutao 3 years ago
parent
commit
ce0cf84a44
1 changed files with 0 additions and 4 deletions
  1. 0 4
      tutorials/train/semantic_segmentation/unet_multi_channel.py

+ 0 - 4
tutorials/train/semantic_segmentation/unet_multi_channel.py

@@ -13,10 +13,6 @@ channel = 10
 train_transforms = T.Compose([
     T.Resize(target_size=512),
     T.RandomHorizontalFlip(),
-    T.RandomBlur(1),
-    T.Padding(768),
-    T.RandomExpand(1.5, prob=1),
-    T.Resize(target_size=512),
     T.Normalize(
         mean=[0.5] * channel, std=[0.5] * channel),
 ])