"...api/git@developer.sourcefind.cn:renzhc/diffusers_dcu.git" did not exist on "8d14edf27ff28a5a37cdb19927579a2d590a7af2"
Unverified Commit acd19627 authored by Sayak Paul's avatar Sayak Paul Committed by GitHub
Browse files

correct hflip arg (#6743)

parent 5b1b80a5
...@@ -741,7 +741,7 @@ def main(args): ...@@ -741,7 +741,7 @@ def main(args):
combined_im = train_resize(combined_im) combined_im = train_resize(combined_im)
# Flipping. # Flipping.
if not args.no_flip and random.random() < 0.5: if not args.no_hflip and random.random() < 0.5:
combined_im = train_flip(combined_im) combined_im = train_flip(combined_im)
# Cropping. # Cropping.
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment