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
i've seen the following code in file "model.py",but i can't see where is the "torch_dwconv" from torch_dwconv import depthwise_conv2d, DepthwiseConv2d
so could please tell me where can i see the file "torch_dwconv"?
The text was updated successfully, but these errors were encountered:
For people who are not willing to install the dependency, go check this thread about depth-wise conv. And from that thread, the equivalent native pytorch implementation should be: self.dwconv = nn.Sequential(nn.Conv2d(hidden_dim, hidden_dim, kernel_size=3,stride=1,padding=1,groups=hidden_dim),act_layer())
i've seen the following code in file "model.py",but i can't see where is the "torch_dwconv"
from torch_dwconv import depthwise_conv2d, DepthwiseConv2d
so could please tell me where can i see the file "torch_dwconv"?
The text was updated successfully, but these errors were encountered: