"...composable_kernel-1.git" did not exist on "c33da3ec1893cbea879031e85fe77c497a0efadf"
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