Cognomen commited on
Commit
57596b6
Β·
1 Parent(s): 14b4aa9

don't normalize conditioning input

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -24,7 +24,7 @@ conditioning_image_transforms = T.Compose(
24
  #T2.ScaleJitter(target_size=output_res, scale_range=(0.5, 3.0))),
25
  T.RandomCrop(size=output_res, pad_if_needed=True, padding_mode="symmetric"),
26
  T.ToTensor(),
27
- T.Normalize([0.5], [0.5]),
28
  ]
29
  )
30
 
 
24
  #T2.ScaleJitter(target_size=output_res, scale_range=(0.5, 3.0))),
25
  T.RandomCrop(size=output_res, pad_if_needed=True, padding_mode="symmetric"),
26
  T.ToTensor(),
27
+ #T.Normalize([0.5], [0.5]),
28
  ]
29
  )
30