-
Notifications
You must be signed in to change notification settings - Fork 529
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Batch-size Error #104
Comments
Have you solved it please, I'm getting the same error |
same problem |
Me either. Is there anybody who solved the problem? |
It's just that the path to the image is written incorrectly and the folder where the image is guaranteed to be read. |
I had this error for two reasons. Firstly, ensure that the file extension is one of the following:
It must also be lowercase (My .JPEG files were not being read). Secondly, it does not search subdirectories, which is annoying if you have train and test sets, subclasses, etc. However, if you dive into the source code and change one letter on line 242 from
to
This should search the directory recursively. |
I get the error, and don't know how to solve it.
python -m pytorch_fid D:/Code/dcgan/dataset/cargo D:/Code/PyTorch-GAN/implementations/wgan_gp/cargo_generat2
Warning: batch size is bigger than the data size. Setting batch size to data size
Traceback (most recent call last):
File "D:\Anaconda\Anaconda3\envs\GAN\lib\runpy.py", line 193, in _run_module_as_main
"main", mod_spec)
File "D:\Anaconda\Anaconda3\envs\GAN\lib\runpy.py", line 85, in run_code
exec(code, run_globals)
File "D:\Anaconda\Anaconda3\envs\GAN\lib\site-packages\pytorch_fid_main.py", line 3, in
pytorch_fid.fid_score.main()
File "D:\Anaconda\Anaconda3\envs\GAN\lib\site-packages\pytorch_fid\fid_score.py", line 317, in main
num_workers)
File "D:\Anaconda\Anaconda3\envs\GAN\lib\site-packages\pytorch_fid\fid_score.py", line 260, in calculate_fid_given_paths
dims, device, num_workers)
File "D:\Anaconda\Anaconda3\envs\GAN\lib\site-packages\pytorch_fid\fid_score.py", line 244, in compute_statistics_of_path
dims, device, num_workers)
File "D:\Anaconda\Anaconda3\envs\GAN\lib\site-packages\pytorch_fid\fid_score.py", line 228, in calculate_activation_statistics
act = get_activations(files, model, batch_size, dims, device, num_workers)
File "D:\Anaconda\Anaconda3\envs\GAN\lib\site-packages\pytorch_fid\fid_score.py", line 126, in get_activations
num_workers=num_workers)
File "D:\Anaconda\Anaconda3\envs\GAN\lib\site-packages\torch\utils\data\dataloader.py", line 274, in init
batch_sampler = BatchSampler(sampler, batch_size, drop_last)
File "D:\Anaconda\Anaconda3\envs\GAN\lib\site-packages\torch\utils\data\sampler.py", line 219, in init
"but got batch_size={}".format(batch_size))
ValueError: batch_size should be a positive integer value, but got batch_size=0
The text was updated successfully, but these errors were encountered: