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
in line 44 lambda_p = F.conv3d(values, self.embedding, padding=(0, self.padding, self.padding)) in model.py
Is there any reason using conv3d?
Can it be implemented using conv2d?
in line 44
lambda_p = F.conv3d(values, self.embedding, padding=(0, self.padding, self.padding))inmodel.pyIs there any reason using conv3d?
Can it be implemented using conv2d?
Thank you.