We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I got some old codes have Conv2dDepthWise in pyinn, how to change it to newest pytorch api?
The text was updated successfully, but these errors were encountered:
from pyinn.modules import Conv2dDepthwise class BasicSepConv(nn.Module): def __init__(self, in_planes, kernel_size, stride=1, padding=0, dilation=1, groups=1, relu=True, bn=True, bias=False): super(BasicSepConv, self).__init__() self.out_channels = in_planes self.conv = Conv2dDepthwise(in_planes, kernel_size=kernel_size, stride=stride, padding=padding, dilation=dilation, bias=bias) self.bn = nn.BatchNorm2d(in_planes, eps=1e-5, momentum=0.01, affine=True) if bn else None self.relu = nn.ReLU(inplace=True) if relu else None def forward(self, x): x = self.conv(x) if self.bn is not None: x = self.bn(x) if self.relu is not None: x = self.relu(x) return x
Sorry, something went wrong.
No branches or pull requests
I got some old codes have Conv2dDepthWise in pyinn, how to change it to newest pytorch api?
The text was updated successfully, but these errors were encountered: