Hello,
I am trying to train DeepCAD-RT on a custom dataset. However, I always get a division by zero error in the get_gap_t function. It is working when changing self.gap_t = math.floor((self.whole_t - self.patch_t * 2) / (s_num - 1)) to self.gap_t = math.floor((self.whole_t - self.patch_t * 2) / (s_num )).
Noise image shape -----> (2100, 800, 800)
Thank you in advance