浏览代码

fix uniasr finetune bug

haoneng.lhn 2 年之前
父节点
当前提交
0270f62add
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      funasr/modules/subsampling.py

+ 2 - 1
funasr/modules/subsampling.py

@@ -358,7 +358,8 @@ class Conv1dSubsampling(torch.nn.Module):
         """
         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: