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
File "/home/SR_code/SMSR-master/data/multiscalesrdata.py", line 86, in init
self.repeat = args.test_every // (len(self.images_hr) // args.batch_size)
ZeroDivisionError: integer division or modulo by zero
I met this error, can you help me?
The text was updated successfully, but these errors were encountered:
It seems like either args.batch_size was 0 or self.images_hr was 0.
You should check these two variables.
I guess the latter is more likely the case. Then, you should check if your dataset is correctly specified.
File "/home/SR_code/SMSR-master/data/multiscalesrdata.py", line 86, in init
self.repeat = args.test_every // (len(self.images_hr) // args.batch_size)
ZeroDivisionError: integer division or modulo by zero
I met this error, can you help me?
The text was updated successfully, but these errors were encountered: