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
cd:root/S-DCNet-master/Network/merge_func.PY/ line23
for rx in range(rate):
for ry in range(rate):
cl2h[:,:,rx::rate,ry::rate] = clow*norm
Report an error at this location,
【RuntimeError: The expanded size of the tensor (9) must match the existing size (8) at non-singleton dimension 3. Target sizes: [1, 1, 6, 9]. Tensor sizes: [5, 8]】
Can you tell me why?
The text was updated successfully, but these errors were encountered:
This maybe due to the improper zero-padding. Since the maximum downsample rate is 64, you must ensure the size of input images to be divisible by 64. This zero padding is ensured in the "load_data_V2.py" line 114 as follows:
sample['image'],sample['density_map'] = get_pad(sample['image'],DIV=64),get_pad(sample['density_map'],DIV=64)
cd:root/S-DCNet-master/Network/merge_func.PY/ line23
for rx in range(rate):
for ry in range(rate):
cl2h[:,:,rx::rate,ry::rate] = clow*norm
Report an error at this location,
【RuntimeError: The expanded size of the tensor (9) must match the existing size (8) at non-singleton dimension 3. Target sizes: [1, 1, 6, 9]. Tensor sizes: [5, 8]】
Can you tell me why?
The text was updated successfully, but these errors were encountered: