(self, **kwargs)
| 636 | avg_pool with stride 2 is added before conv, whose stride is changed to 1. |
| 637 | """ |
| 638 | def __init__(self, **kwargs): |
| 639 | super(ResNetV1d, self).__init__(deep_stem=True, |
| 640 | avg_down=True, |
| 641 | **kwargs) |
| 642 | |
| 643 | |
| 644 | def conv3x3(in_planes, out_planes, stride=1, groups=1, dilation=1): |