I faced an error when computing Milan descriptions with running code below:
! python3 -m scripts.compute_milan_descriptions biggan imagenet --device cuda
the error is located on line 71 of compute_milan_descriptions.py.
with results_csv_file.open('r') as handle:
I think it should be:
with results_csv_file.open('w') as handle:
I faced an error when computing Milan descriptions with running code below:
! python3 -m scripts.compute_milan_descriptions biggan imagenet --device cuda
the error is located on line 71 of compute_milan_descriptions.py.
with results_csv_file.open('r') as handle:
I think it should be:with results_csv_file.open('w') as handle: