advimman / CIPS

Official repository for the paper "Image Generators with Conditionally-Independent Pixel Synthesis" (CVPR2021, Oral)
MIT License
207 stars 36 forks source link

arg.path misdefined? #3

Open TheodoreGalanos opened 3 years ago

TheodoreGalanos commented 3 years ago

It seems you are passing the path argument to args.out_path (line 332 in train.py). Is that the normal procedure?

Should that be commented out, in order to use the path argument in Multiscale dataset? Or is it expected that the dataset folders are inside the output_path?

Thanks!

avecplezir commented 3 years ago

The name of the arguments is misleading indeed. Sorry for that. However, the code should work as it is. Note that in line 332 in train.py 'path = args.out_path' but args.path is used later as an argument in Multiscale dataset.

Ivan