hnluo
2023-09-11 9fcb3cc06b4e324f0913d2f61b89becc2baeef1b
funasr/modules/subsampling.py
@@ -358,7 +358,8 @@
        """
        x = x.transpose(1, 2)  # (b, d ,t)
        x = self.pad_fn(x)
        x = F.relu(self.conv(x))
        #x = F.relu(self.conv(x))
        x = F.leaky_relu(self.conv(x), negative_slope=0.)
        x = x.transpose(1, 2)  # (b, t ,d)
        if x_len is None: