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
hello. First of all, thank you for sharing this great research.
However, the Neural_Volume_Net that I define in line 736 of my render_models.py file is the code to aggregate 5D Volumes. But when I run the actual code, I get an error because the batchnorm is declared as 2D. I think I need to change it to BatchNorm3d, what do you think?
class Neural_Volume_Net(nn.Module):
def __init__(self,
num_groups=1,
norm_act=nn.BatchNorm2d,
levels=1):
Also, I was wondering why you created an empty channel as much as C for volume_feature_no_ref with no reference image on line 83 of the casmvsnet.py file?
hello. First of all, thank you for sharing this great research.
torch.empty((B, 3*(num_views-1) + C, num_depth, *ref_feature.shape[-2:]), device=imgs.device, dtype=torch.float)
The text was updated successfully, but these errors were encountered: