models/builder.py [125:135]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        self,
        in_planes,
        out_planes,
        stride=1,
        groups=1,
        first_layer=False,
        last_layer=False,
        is_conv=False,
    ):
        """1x1 convolution with padding"""
        c = self.conv(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



models/builder.py [149:159]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        self,
        in_planes,
        out_planes,
        stride=1,
        groups=1,
        first_layer=False,
        last_layer=False,
        is_conv=False,
    ):
        """3x3 convolution with padding"""
        c = self.conv(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



