|
|
- def __init__(self, c1, c2, k=1, s=1, bias=False, p=None, g=1, d=1, act=True):
|
|
|
|
|
|
|
+ def __init__(self, c1, c2, k=1, s=1, p=None, g=1, d=1, act=True):
|
|
|
self.conv = nn.Conv2d(c1, c2, k, s, autopad(k, p, d), groups=g, dilation=d, bias=bias)
|
|
self.conv = nn.Conv2d(c1, c2, k, s, autopad(k, p, d), groups=g, dilation=d, bias=bias)
|