Skip to content
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

Closed
Royalbx opened this issue Nov 17, 2023 · 5 comments
Closed

Batch-size Error #104

Royalbx opened this issue Nov 17, 2023 · 5 comments

Comments

@Royalbx
Copy link

Royalbx commented Nov 17, 2023

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

@xiaoxiaodadada
Copy link

Have you solved it please, I'm getting the same error

@Howard-Lee-666
Copy link

same problem

@yhcha96
Copy link

yhcha96 commented Dec 6, 2023

Me either. Is there anybody who solved the problem?

@xiaoxiaodadada
Copy link

It's just that the path to the image is written incorrectly and the folder where the image is guaranteed to be read.
If it doesn't work, convert it to .npz format and try reading it again!

@benjamins5335
Copy link

I had this error for two reasons. Firstly, ensure that the file extension is one of the following:

IMAGE_EXTENSIONS = {'bmp', 'jpg', 'jpeg', 'pgm', 'png', 'ppm','tif', 'tiff', 'webp'}

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

for file in path.glob('*.{}'.format(ext))])

to

for file in path.rglob('*.{}'.format(ext))])

This should search the directory recursively.

@mseitzer mseitzer closed this as completed Feb 7, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants