NVlabs / eg3d

Other
3.24k stars 363 forks source link

fix parsing outzip in afhq data preprocessing #59

Closed mshahbazi72 closed 9 months ago

mshahbazi72 commented 2 years ago

outzip is defined as a positional argument (no -- option before the name) in dataset_preprocessing/afhq/runme.py, line 22. Therefore, the use of the argument "required=False" in line 22 throws the following error: TypeError: 'required' is an invalid argument for positionals

This pull request replaces "outzip" with "--outzip" in dataset_preprocessing/afhq/runme.py, line 22m to fix the following issue.