"src/vscode:/vscode.git/clone" did not exist on "38de964343909841da2a4854468215f731020993"
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):
combined_im = train_resize(combined_im)
# 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)
# 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