lib/models/conv.py [41:49]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        x = self.deconv2(x)
        if self.batchnorm:
            x = self.deconv2_bn(x)
        x = self.activation(x)

        x = self.deconv3(x)
        if self.batchnorm:
            x = self.deconv3_bn(x)
        x = self.activation(x)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



lib/models/conv.py [135:143]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        x = self.deconv2(x)
        if self.batchnorm:
            x = self.deconv2_bn(x)
        x = self.activation(x)

        x = self.deconv3(x)
        if self.batchnorm:
            x = self.deconv3_bn(x)
        x = self.activation(x)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



