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
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?