You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I initially encountered a path error in executing the preprocessing step compute_fid_statistics.py when specifying the --file argument with both the directory and filename for CIFAR-10 (cifar10.npz). However, when I used just the filename (cifar10.npz without the directory path), the FID statistics were saved successfully. Please confirm if the filename in the following command includes the full path by mistake.
python compute_fid_statistics.py --path /src/data/CIFAR-10/cifar10.zip --file /src/data/CIFAR-10/cifar10.npz
It works with the following modification.
python compute_fid_statistics.py --path /src/data/CIFAR-10/cifar10.zip --file cifar10.npz
The text was updated successfully, but these errors were encountered:
Thank you for bringing this to our attention! We have updated the README to clarify the usage of the --file argument. You can now run the preprocessing step with the command:
I initially encountered a path error in executing the preprocessing step compute_fid_statistics.py when specifying the --file argument with both the directory and filename for CIFAR-10 (cifar10.npz). However, when I used just the filename (cifar10.npz without the directory path), the FID statistics were saved successfully. Please confirm if the filename in the following command includes the full path by mistake.
python compute_fid_statistics.py --path /src/data/CIFAR-10/cifar10.zip --file /src/data/CIFAR-10/cifar10.npz
It works with the following modification.
python compute_fid_statistics.py --path /src/data/CIFAR-10/cifar10.zip --file cifar10.npz
The text was updated successfully, but these errors were encountered: