cuiaiyu / dressing-in-order

(ICCV'21) Official code of "Dressing in Order: Recurrent Person Image Generation for Pose Transfer, Virtual Try-on and Outfit Editing" by Aiyu Cui, Daniel McKee and Svetlana Lazebnik
https://cuiaiyu.github.io/dressing-in-order
Other
507 stars 126 forks source link

Typo in repo download file. #85

Closed aravind-h-v closed 1 year ago

aravind-h-v commented 1 year ago

The 'tools/download_deepfashion_from_google_drive.py' has a typo, attaching the required correction:

os.system("mv {} {}".format(args.dataroot + "/images/"+fn, "args.dataroot + "/test/"+new_fn)) should be: os.system("mv {} {}".format(args.dataroot + "/images/"+fn, args.dataroot + "/test/"+new_fn))

and:

os.system("mv {} {}".format(args.dataroot + "/images/"+fn, "args.dataroot + "/train/"+new_fn)) should be: os.system("mv {} {}".format(args.dataroot + "/images/"+fn, args.dataroot + "/train/"+new_fn))

cuiaiyu commented 1 year ago

fixed. thanks!